Skip to content

Commit

Permalink
test(functions): yarn2+ does not have a --prefix arg, use --cwd
Browse files Browse the repository at this point in the history
only noticed when attempting to deploy our test functions, this must
have been missed in the yarn2+ forward-port
  • Loading branch information
mikehardy authored and exaby73 committed Sep 26, 2024
1 parent d70f3da commit d38b520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"indexes": "firestore.indexes.json"
},
"functions": {
"predeploy": ["cd functions && yarn", "cd functions && yarn --prefix \"$RESOURCE_DIR\" build"],
"predeploy": ["cd functions && yarn", "cd functions && yarn --cwd \"$RESOURCE_DIR\" build"],
"source": "functions",
"ignore": [".yarn", "yarn.lock", "*.log", "node_modules"]
},
Expand Down

0 comments on commit d38b520

Please sign in to comment.