Skip to content

Commit

Permalink
fix: correct user creation
Browse files Browse the repository at this point in the history
Unfortunately spaces around `=` in bash confuse the parser, gotta drop those.
  • Loading branch information
mishok13 committed Sep 2, 2024
1 parent 7f3d958 commit 3b1b99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/sentry/templates/hooks/user-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ spec:
args:
- |
set -e
emails = ({{ join " " .Values.user.emails }})
emails=({{ join " " .Values.user.emails }})
for email in "${emails[@]}"; do
sentry createuser --no-input --superuser --email "$email" --no-password --force-update;
done
Expand Down

0 comments on commit 3b1b99a

Please sign in to comment.