Skip to content

Commit

Permalink
setup: working around issues with deploy_files
Browse files Browse the repository at this point in the history
Change-Id: I22e7c78b94b0c062032494f9fa62e452536e23cf
  • Loading branch information
evil-shrike committed Nov 13, 2023
1 parent 9f07e14 commit ac80934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gcp/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ deploy_files() {
GCS_BASE_PATH=gs://$PROJECT_ID/$NAME

echo "Removing existing files at $GCS_BASE_PATH"
gsutil -m rm -r $GCS_BASE_PATH/
gsutil rm -r $GCS_BASE_PATH/

# NOTE: if an error "module 'sys' has no attribute 'maxint'" occures, run this: `pip3 install -U crcmod`
echo "Copying application files to $GCS_BASE_PATH"
Expand Down Expand Up @@ -338,11 +338,11 @@ enable_private_google_access() {
deploy_all() {
enable_apis
set_iam_permissions
deploy_files
#create_registry
#build_docker_image
build_docker_image_gcr
deploy_cf
deploy_files
schedule_run
}

Expand Down

0 comments on commit ac80934

Please sign in to comment.