mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-22 14:19:09 +03:00
53 lines
889 B
Bash
Executable File
53 lines
889 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "$#"
|
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
git add .
|
|
git reset -q --hard HEAD
|
|
|
|
while [[ -n "$( git log -1 | grep "VSCODIUM HELPER" )" ]]; do
|
|
git reset -q --hard HEAD~
|
|
done
|
|
|
|
git apply --reject "../patches/helper/settings.patch"
|
|
|
|
while [ $# -gt 1 ]; do
|
|
echo "Parameter: $1"
|
|
if [[ "${1}" == *patch ]]; then
|
|
FILE="../patches/${1}"
|
|
else
|
|
FILE="../patches/${1}.patch"
|
|
fi
|
|
|
|
git apply --reject "${FILE}"
|
|
|
|
shift
|
|
done
|
|
|
|
git add .
|
|
git commit -q -m "VSCODIUM HELPER" --no-verify
|
|
|
|
if [[ "${1}" == *patch ]]; then
|
|
FILE="../patches/${1}"
|
|
else
|
|
FILE="../patches/${1}.patch"
|
|
fi
|
|
|
|
if [[ -f "${FILE}" ]]; then
|
|
git apply --reject "${FILE}"
|
|
fi
|
|
|
|
read -rp "Press any key when the conflict have been resolved..." -n1 -s
|
|
|
|
git add .
|
|
git diff --staged -U1 > "${FILE}"
|
|
git reset -q --hard HEAD~
|
|
|
|
cd ..
|
|
|
|
echo "The patch has been generated."
|