Skip to content

Commit

Permalink
sackmesser deply quote for glob
Browse files Browse the repository at this point in the history
  • Loading branch information
danistrebel committed Jan 24, 2022
1 parent ca9313a commit 01cbf2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions references/cloud-logging-shared-flow/pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ if [ "$EXISTING_EMAIL" != "$SA_EMAIL" ]; then
--role="roles/logging.logWriter"
fi



sackmesser deploy --googleapi -d "$SCRIPTPATH" -t "$APIGEE_TOKEN" --deployment-sa "$SA_EMAIL"
sackmesser deploy --googleapi -d "$SCRIPTPATH/test/logging-example" -t "$APIGEE_TOKEN"

Expand Down
4 changes: 2 additions & 2 deletions tools/apigee-sackmesser/cmd/deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ skip_deployment=true #skip maven deploy unless bundle contains proxy or shared f
if [ -d "$temp_folder/apiproxy" ]; then
loginfo "Configuring API Proxy"

if [ -z "$(find $temp_folder/apiproxy -type f -name "*.xml" -d 1)" ]; then
if [ -z "$(find "$temp_folder/apiproxy" -type f -name "*.xml" -d 1)" ]; then
if [ -z "$bundle_name" ]; then
bundle_name=$(basename "$source_dir")
fi
Expand Down Expand Up @@ -155,7 +155,7 @@ elif [ -d "$temp_folder/sharedflowbundle" ]; then

skip_deployment=false

if [ -z "$(find $temp_folder/sharedflowbundle -type f -name "*.xml" -d 1)" ]; then
if [ -z "$(find "$temp_folder/sharedflowbundle" -type f -name "*.xml" -d 1)" ]; then
if [ -z "$bundle_name" ]; then
bundle_name=$(basename "$source_dir")
fi
Expand Down

0 comments on commit 01cbf2d

Please sign in to comment.