Skip to content

Commit

Permalink
Update devhub.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz authored Sep 9, 2023
1 parent d95f295 commit 963e165
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devhub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ -z "$DEV_HUB_AUTH_URL" ]; then
--alias DevHub \
--set-default-dev-hub

rm /tmp/dev_hub.key
[[ -f /tmp/dev_hub.key ]] && rm /tmp/dev_hub.key

else
# Authenticate using Auth URL
Expand All @@ -44,7 +44,7 @@ else
# Authenticate the DevHub
sfdx org login sfdx-url -f /tmp/dev_hub_auth_url -a DevHub -d

rm /tmp/dev_hub_auth_url
[[ -f /tmp/dev_hub_auth_url ]] && rm /tmp/dev_hub_auth_url
fi

if [ -z "$PACKAGING_ORG_AUTH_URL" ]; then
Expand All @@ -62,7 +62,7 @@ else
# Import the org to CumulusCI
cci org import packaging packaging

rm /tmp/packaging_org_auth_url
[[ -f /tmp/packaging_org_auth_url ]] && rm /tmp/packaging_org_auth_url
fi

if [ "`whoami`" == "d2x" ]; then
Expand Down

0 comments on commit 963e165

Please sign in to comment.