Skip to content

Commit

Permalink
Fixup script/extension-upload that had a condition inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Dec 15, 2023
1 parent 2e6fff5 commit 24d63fb
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 24d63fb

Please sign in to comment.