Skip to content

Commit

Permalink
Allowed building for dirs that have spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
josephworks committed Sep 4, 2020
1 parent df7efd2 commit bd703ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions akarin
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ function setupUpstreamAndPatch {
$scriptdir/updateUpstream.sh "$basedir" 1 || exit 1
else
if [ "$1" != "--skipPaper" ]; then
$scriptdir/updateUpstream.sh "$basedir" 0 || exit 1 # not update submodule
"$scriptdir/updateUpstream.sh" "$basedir" 0 || exit 1 # not update submodule
fi
fi
$scriptdir/applyPatches.sh "$basedir" || exit 1
"$scriptdir/applyPatches.sh" "$basedir" || exit 1
}

failed=0
Expand All @@ -33,8 +33,8 @@ case "$1" in
(
set -e
basedir
$scriptdir/importSources.sh "$basedir" || exit 1
$scriptdir/rebuildPatches.sh "$basedir" || exit 1
"$scriptdir/importSources.sh" "$basedir" || exit 1
"$scriptdir/rebuildPatches.sh" "$basedir" || exit 1
) || failed=1
;;
"a" | "p" | "patch" | "apply")
Expand All @@ -61,7 +61,7 @@ case "$1" in
cd ${FORK_NAME}-API
$mvncmd -e clean install && (cd ../Tuinity/Paper/Paper-MojangAPI && $mvncmd -e clean install) && cd ../${FORK_NAME}-Server && $mvncmd -e clean install surefire-report:report
basedir
$scriptdir/installLauncher.sh "$basedir"
"$scriptdir/installLauncher.sh" "$basedir"
) || failed=1
;;
"d" | "de" | "deploy")
Expand Down

0 comments on commit bd703ba

Please sign in to comment.