mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 20:14:22 +00:00
Merge pull request #198 from iKarith/master
Fix for spaces in your PWD.
This commit is contained in:
commit
8999c74976
@ -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