mirror of
https://github.com/VSCodium/vscodium
synced 2024-11-04 23:49:50 +00:00
29 lines
526 B
Bash
Executable file
29 lines
526 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ "${1}" == *patch ]]; then
|
|
FILE="../patches/${1}"
|
|
else
|
|
FILE="../patches/${1}.patch"
|
|
fi
|
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
git add .
|
|
git reset -q --hard HEAD
|
|
|
|
if [[ -f "${FILE}" ]]; then
|
|
git apply --reject "${FILE}"
|
|
fi
|
|
|
|
git apply --reject "../patches/helper/settings.patch"
|
|
|
|
read -rp "Press any key when the conflict have been resolved..." -n1 -s
|
|
|
|
git restore .vscode/settings.json
|
|
|
|
git add .
|
|
git diff --staged -U1 > "${FILE}"
|
|
|
|
cd ..
|
|
|
|
echo "The patch has been generated."
|