Fixes Error "There is no game at this location" (#172)
$GAMEPATH was not wrapped like this "$GAMEPATH" `/path/to/World\ of\ Warcraft\` works now.
This commit is contained in:
parent
2139572049
commit
a1821e6861
@ -1284,15 +1284,15 @@ function ExtractResources
|
|||||||
# Check the user's answer
|
# Check the user's answer
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
Log "Deleting DBC and Maps previously generated." 1
|
Log "Deleting DBC and Maps previously generated." 1
|
||||||
rm -rf $GAMEPATH/dbc
|
rm -rf "$GAMEPATH/dbc"
|
||||||
rm -rf $GAMEPATH/maps
|
rm -rf "$GAMEPATH/maps"
|
||||||
|
|
||||||
Log "Copying DBC and Maps extractor" 0
|
Log "Copying DBC and Maps extractor" 0
|
||||||
rm -f "$GAMEPATH/map-extractor"
|
rm -f "$GAMEPATH/map-extractor"
|
||||||
cp "$INSTPATH/bin/tools/map-extractor" "$GAMEPATH"
|
cp "$INSTPATH/bin/tools/map-extractor" "$GAMEPATH"
|
||||||
|
|
||||||
Log "Extracting DBC and Maps" 0
|
Log "Extracting DBC and Maps" 0
|
||||||
cd $GAMEPATH
|
cd "$GAMEPATH"
|
||||||
./map-extractor
|
./map-extractor
|
||||||
|
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
@ -1316,11 +1316,11 @@ function ExtractResources
|
|||||||
cp -R "$GAMEPATH/maps" "$INSTPATH/bin"
|
cp -R "$GAMEPATH/maps" "$INSTPATH/bin"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
rm -rf $GAMEPATH/map-extractor
|
rm -rf "$GAMEPATH/map-extractor"
|
||||||
cp "$INSTPATH/bin/tools/map-extractor" "$GAMEPATH"
|
cp "$INSTPATH/bin/tools/map-extractor" "$GAMEPATH"
|
||||||
|
|
||||||
Log "Extracting DBC and Maps" 0
|
Log "Extracting DBC and Maps" 0
|
||||||
cd $GAMEPATH
|
cd "$GAMEPATH"
|
||||||
./map-extractor
|
./map-extractor
|
||||||
|
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user