Skip to content

Commit

Permalink
fix(chart): base64 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Fricke committed Jan 18, 2020
1 parent 1377fba commit d0f9664
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/update_chart.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -ex

SHA=$(echo $(cat $NAME-$VERSION.tgz | git hash-object --stdin))
CONTENT=$(echo $(cat $NAME-$VERSION.tgz | base64))
SHA=$(echo $(cat $NAME-$VERSION.tgz) | git hash-object --stdin)
CONTENT=$(echo $(cat $NAME-$VERSION.tgz) | base64)

echo "Upload chart $NAME"

Expand Down

0 comments on commit d0f9664

Please sign in to comment.