Skip to content

Commit

Permalink
Merge pull request #59 from cyberark/temp-fix-actions
Browse files Browse the repository at this point in the history
Fixes github actions following postgres fix
  • Loading branch information
diverdane authored Jun 18, 2020
2 parents 2dab801 + 40812df commit 9074ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ function delete_release() {
echo "=========================================="
echo "Deleting Conjur Helm release $RELEASE_NAME"
echo "=========================================="
if [ ! -z "HELM_DEL_ARGS" ]; then
helm del "$HELM_DEL_ARGS " "$RELEASE_NAME"
if [ ! -z "$HELM_DEL_ARGS" ]; then
helm del $HELM_DEL_ARGS "$RELEASE_NAME"
else
helm del "$RELEASE_NAME"
fi
Expand Down

0 comments on commit 9074ea8

Please sign in to comment.