Skip to content

Commit

Permalink
Fix escaping error from reformatting
Browse files Browse the repository at this point in the history
Caused: ./flutterw: line 33: cd: "./: No such file or directory
  • Loading branch information
passsy committed Sep 10, 2019
1 parent c41f63e commit 27fd2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flutterw
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ while [ -h "$PRG" ]; do
fi
done
SAVED="$(pwd)"
cd "$(dirname \"$PRG\")/" >/dev/null
cd "$(dirname "$PRG")/" >/dev/null
APP_HOME="$(pwd -P)"
cd "$SAVED" >/dev/null

Expand Down

0 comments on commit 27fd2b6

Please sign in to comment.