Skip to content

Commit

Permalink
Merge pull request #50 from carlopi/fixupupload
Browse files Browse the repository at this point in the history
Fixup script/extension-upload that had a condition inverted
  • Loading branch information
samansmink authored Dec 15, 2023
2 parents 2e6fff5 + 24d63fb commit 39dbf70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/extension-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ cat $ext.sign >> $ext.append

# compress extension binary
if [[ $4 == wasm_* ]]; then
gzip < $ext.append > "$ext.compressed"
else
brotli < $ext.append > "$ext.compressed"
else
gzip < $ext.append > "$ext.compressed"
fi

set -e
Expand Down

0 comments on commit 39dbf70

Please sign in to comment.