You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Ubuntu, the default shell is dash, which supports Bourne shell syntax. The
Spigot build tools rely on Bash syntax, specifically Bash function declarations:
Bourne shell:
applyPatches() {
# ...
}
Bash:
function applyPatches() {
# ...
}
This commit overrides the default user shell for the build.
0 commit comments