Skip to content

Commit 6f7603c

Browse files
Ensure clean and build run sequentially in predeploy script (#12)
the build was being wiped out by the clean because they were running simulateously.
1 parent 903643c commit 6f7603c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firebase.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"hosting": {
3-
"predeploy": "flutter clean & flutter build web",
3+
"predeploy": "flutter clean && flutter build web",
44
"public": "build/web",
55
"ignore": [
66
"firebase.json",
@@ -18,4 +18,4 @@
1818
"rules": "firestore.rules",
1919
"indexes": "firestore.indexes.json"
2020
}
21-
}
21+
}

0 commit comments

Comments
 (0)