Skip to content

Commit 27fd2b6

Browse files
committed
Fix escaping error from reformatting
Caused: ./flutterw: line 33: cd: "./: No such file or directory
1 parent c41f63e commit 27fd2b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flutterw

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ while [ -h "$PRG" ]; do
3030
fi
3131
done
3232
SAVED="$(pwd)"
33-
cd "$(dirname \"$PRG\")/" >/dev/null
33+
cd "$(dirname "$PRG")/" >/dev/null
3434
APP_HOME="$(pwd -P)"
3535
cd "$SAVED" >/dev/null
3636

0 commit comments

Comments
 (0)