Commit 043917c5 authored by Adam Barth's avatar Adam Barth

Fix crash in flutter script

parent 6d1b63ce
...@@ -19,11 +19,11 @@ fi ...@@ -19,11 +19,11 @@ fi
REVISION=`(cd "$FLUTTER_ROOT"; git rev-parse HEAD)` REVISION=`(cd "$FLUTTER_ROOT"; git rev-parse HEAD)`
if [ ! -f "$SNAPSHOT_PATH" ] || [ ! -f "$STAMP_PATH" ] || [ `cat "$STAMP_PATH"` != $REVISION ]; then if [ ! -f "$SNAPSHOT_PATH" ] || [ ! -f "$STAMP_PATH" ] || [ `cat "$STAMP_PATH"` != $REVISION ]; then
DART --snapshot="$SNAPSHOT_PATH" --package-root="$FLUTTER_TOOLS_DIR/packages" "$SCRIPT_PATH" $DART --snapshot="$SNAPSHOT_PATH" --package-root="$FLUTTER_TOOLS_DIR/packages" "$SCRIPT_PATH"
echo -n $REVISION > "$STAMP_PATH" echo -n $REVISION > "$STAMP_PATH"
fi fi
DART "$SNAPSHOT_PATH" "$@" $DART "$SNAPSHOT_PATH" "$@"
# The VM exits with code 253 if the snapshot version is out-of-date. # The VM exits with code 253 if the snapshot version is out-of-date.
# If it is, we need to snapshot it again. # If it is, we need to snapshot it again.
...@@ -32,5 +32,5 @@ if [ $EXIT_CODE != 253 ]; then ...@@ -32,5 +32,5 @@ if [ $EXIT_CODE != 253 ]; then
exit $EXIT_CODE exit $EXIT_CODE
fi fi
DART --snapshot="$SNAPSHOT_PATH" --package-root="$FLUTTER_TOOLS_DIR/packages" "$SCRIPT_PATH" $DART --snapshot="$SNAPSHOT_PATH" --package-root="$FLUTTER_TOOLS_DIR/packages" "$SCRIPT_PATH"
DART "$SNAPSHOT_PATH" "$@" $DART "$SNAPSHOT_PATH" "$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment