mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
Fix build error - Resolves #130
If the path to the Paper repository contained a space, it would fail to execute dirname $PATH_WITH_SPACE
This commit is contained in:
parent
65c5b95059
commit
9eba8a79e7
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ basedir=$basedir/Spigot
|
||||||
applyPatch ../Bukkit Spigot-API HEAD && applyPatch ../CraftBukkit Spigot-Server patched
|
applyPatch ../Bukkit Spigot-API HEAD && applyPatch ../CraftBukkit Spigot-Server patched
|
||||||
# Move out of Spigot
|
# Move out of Spigot
|
||||||
popd
|
popd
|
||||||
basedir=$(dirname $basedir)
|
basedir=$(dirname "$basedir")
|
||||||
|
|
||||||
# Apply paper
|
# Apply paper
|
||||||
applyPatch Spigot/Spigot-API Paper-API HEAD && applyPatch Spigot/Spigot-Server Paper-Server HEAD
|
applyPatch Spigot/Spigot-API Paper-API HEAD && applyPatch Spigot/Spigot-Server Paper-Server HEAD
|
||||||
|
|
Loading…
Reference in a new issue