mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2024-11-05 10:23:15 +01:00
6866737d61
Also added a few more commands and a new script.
48 lines
1.5 KiB
Bash
Executable File
48 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
searchtxts=(Server API)
|
|
gpgsign="$(git config commit.gpgsign || echo "false")"
|
|
scriptdir=$1/scripts
|
|
function enableCommitSigningIfNeeded() {
|
|
if [[ "$gpgsign" == "true" ]]; then
|
|
git config commit.gpgsign true
|
|
fi
|
|
}
|
|
|
|
if [ $2 == "removed" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Disable GPG signing before AM, slows things down and doesn't play nicely.
|
|
# There is also zero rational or logical reason to do so for these sub-repo AMs.
|
|
# Calm down kids, it's re-enabled (if needed) immediately after, pass or fail.
|
|
git config commit.gpgsign false
|
|
cd "$1"/patches/"$2"
|
|
for D in ${searchtxts[@]}; do
|
|
if [ -d $1/patches/$2/$dnoslashlower ]; then
|
|
echo $D
|
|
dnoslash=$D
|
|
cd "$1"/Yatopia-"$dnoslash"
|
|
echo "Appyling $2 $dnoslash files!"
|
|
dnoslashlower="${dnoslash,,}"
|
|
if [ $dnoslashlower != "api" ]; then
|
|
echo "$"
|
|
echo "Import new introduced NMS files.. test"
|
|
$scriptdir/importSources.sh $1 $2 || exit 1
|
|
fi
|
|
for filename in $1/patches/$2/$dnoslashlower/*.patch; do
|
|
# Abort previous applying operation
|
|
git am --abort >/dev/null 2>&1
|
|
# Apply our patches on top Paper in our dirs
|
|
git am --reject --3way --whitespace=fix $filename || (
|
|
filenamend="${filename##*/}"
|
|
filenamens=${filenamend%/*}
|
|
filenameedited=${filenamens%.*} # retain the part before the period
|
|
filenameedited=${filenameedited:5} # retain the part after the frist slash
|
|
git add .
|
|
git commit -m $filenameedited
|
|
)
|
|
done
|
|
fi
|
|
done
|
|
enableCommitSigningIfNeeded
|