Improve build scripts to work in pathnames with spaces

This commit is contained in:
Adomas Venčkauskas 2023-07-05 15:01:32 +03:00
parent 04496fadcd
commit 49eda8861e
3 changed files with 5 additions and 5 deletions

View file

@ -387,7 +387,7 @@ if [ $BUILD_MAC == 1 ]; then
#if [ ! -e "Firefox $GECKO_VERSION MacOS.zip" ]; then
# rm "MacOS.zip"
#fi
echo $($SCRIPT_DIR/xulrunner_hash -p m) > hash-mac
echo $("$SCRIPT_DIR/xulrunner_hash" -p m) > hash-mac
fi
if [ $BUILD_WIN == 1 ]; then
@ -452,7 +452,7 @@ if [ $BUILD_WIN == 1 ]; then
echo
echo
done
echo $($SCRIPT_DIR/xulrunner_hash -p w) > hash-win
echo $("$SCRIPT_DIR/xulrunner_hash" -p w) > hash-win
fi
if [ $BUILD_LINUX == 1 ]; then