Skip to content

Commit

Permalink
build: don't deploy mog until we're ready to code review new version
Browse files Browse the repository at this point in the history
we are deploying a testing version of mog while we get ready to code review the final product; skip deploying for the time being.
  • Loading branch information
bcoe committed Feb 14, 2020
1 parent 28be7a6 commit 10aca3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/build-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ npm install -g typescript
cd packages || exit 1
for f in *; do
# Skip symlinks and our gcf-utils/generate-bot directory as it is not a function
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" ]]; then
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" && "$f" != "merge-on-green" ]]; then
(
cd "$f" || exit 1
echo "$f"
Expand Down
2 changes: 1 addition & 1 deletion scripts/cron-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ proxyurl=$(gcloud beta run services describe serverless-scheduler-proxy \
cd packages || exit 1
for f in *; do
# Skip symlinks and our gcf-utils/generate-bot directory as it is not a function
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" ]]; then
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" && "$f" != "merge-on-green"]]; then
cd "$f" || exit 1
echo "$f"
for fx in *; do
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ echo "$targets"
cd "$targets" || exit 1
for f in *; do
# Skip symlinks and our gcf-utils/generate-bot directory as it is not a function
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" ]]; then
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" && "$f" != "merge-on-green" ]]; then
# Subshell to avoid having to cd back
(
cd "$f" || exit 1
Expand Down

0 comments on commit 10aca3a

Please sign in to comment.