mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 11:14:11 +00:00
Fix for spaces in your PWD.
This commit is contained in:
parent
6b703d4284
commit
8d3cbf7f63
@ -3,7 +3,7 @@
|
||||
|
||||
SCRIPT="${0#./}"
|
||||
BASE_DIR="${SCRIPT%/*}"
|
||||
WORKDIR=$(pwd)
|
||||
WORKDIR="$PWD"
|
||||
|
||||
if [ "$BASE_DIR" = "$SCRIPT" ]; then
|
||||
BASE_DIR="$WORKDIR"
|
||||
@ -14,8 +14,8 @@ else
|
||||
fi
|
||||
fi
|
||||
|
||||
. $BASE_DIR/libretro-config.sh
|
||||
. $BASE_DIR/script-modules/fetch-rules.sh
|
||||
. "$BASE_DIR/libretro-config.sh"
|
||||
. "$BASE_DIR/script-modules/fetch-rules.sh"
|
||||
|
||||
|
||||
# Keep three copies so we don't have to rebuild stuff all the time.
|
||||
|
Loading…
Reference in New Issue
Block a user