Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-14 20:10:05 +01:00
[CI-SKIP] Ignore gitignore when adding files in automation
Continuation of #5387 Fixes #5456
Dieser Commit ist enthalten in:
Ursprung
d8e384a164
Commit
304a216ba5
@ -52,7 +52,7 @@ fi
|
||||
if [ -f "$file" ] && [[ "$filedata" == *"<<<<<"* ]]; then
|
||||
export summaryfail="$summaryfail\nFAILED TO APPLY: $i"
|
||||
else
|
||||
$gitcmd add "$i"
|
||||
$gitcmd add --force "$i"
|
||||
export summarygood="$summarygood\nAPPLIED CLEAN: $i"
|
||||
fi
|
||||
done
|
||||
|
@ -121,6 +121,6 @@ importLibrary com.mojang datafixerupper com/mojang/serialization Dynamic.java
|
||||
set -e
|
||||
cd "$workdir/Spigot/Spigot-Server/"
|
||||
rm -rf nms-patches applyPatches.sh makePatches.sh >/dev/null 2>&1
|
||||
$gitcmd add . --force -A >/dev/null 2>&1
|
||||
$gitcmd add --force . -A >/dev/null 2>&1
|
||||
echo -e "mc-dev Imports\n\n$MODLOG" | $gitcmd commit . -F -
|
||||
)
|
||||
|
@ -54,7 +54,7 @@ do
|
||||
mkdir -p "$(dirname $cb/"$file")"
|
||||
cp "$nms/$file" "$cb/$file"
|
||||
done < <(find nms-patches -type f -print0)
|
||||
$gitcmd add src
|
||||
$gitcmd add --force src
|
||||
$gitcmd commit -m "Minecraft $ $(date)" --author="Vanilla <auto@mated.null>"
|
||||
|
||||
# apply patches
|
||||
@ -71,7 +71,7 @@ do
|
||||
"$patch" -d src/main/java -p 1 < "$patchFile"
|
||||
done < <(find nms-patches -type f -print0)
|
||||
|
||||
$gitcmd add src
|
||||
$gitcmd add --force src
|
||||
$gitcmd commit -m "CraftBukkit $ $(date)" --author="CraftBukkit <auto@mated.null>"
|
||||
$gitcmd checkout -f HEAD~2
|
||||
)
|
||||
|
@ -52,7 +52,7 @@ function savePatches {
|
||||
|
||||
$gitcmd format-patch --zero-commit --full-index --no-signature --no-stat -N -o "$basedir/${what_name}-Patches/" upstream/upstream >/dev/null
|
||||
cd "$basedir"
|
||||
$gitcmd add -A "$basedir/${what_name}-Patches"
|
||||
$gitcmd add --force -A "$basedir/${what_name}-Patches"
|
||||
if [ "$nofilter" == "0" ]; then
|
||||
cleanupPatches "$basedir/${what_name}-Patches"
|
||||
fi
|
||||
|
@ -16,7 +16,7 @@ function update {
|
||||
$gitcmd fetch && $gitcmd clean -fd && $gitcmd reset --hard origin/master
|
||||
refRemote=$(git rev-parse HEAD)
|
||||
cd ../
|
||||
$gitcmd add $1 -f
|
||||
$gitcmd add --force $1
|
||||
refHEAD=$(getRef HEAD "$workdir/$1")
|
||||
echo "$1 $refHEAD - $refRemote"
|
||||
if [ "$refHEAD" != "$refRemote" ]; then
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren