Skip to content

Commit

Permalink
Merge pull request #49 from carlopi/new-style-duckdb-wasm
Browse files Browse the repository at this point in the history
Support streamlined paths for duckdb-wasm
  • Loading branch information
samansmink committed Dec 6, 2023
2 parents ab2cc0c + fb2ece6 commit 2e6fff5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/extension-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ fi
# upload versioned version
if [[ $7 = 'true' ]]; then
if [[ $4 == wasm* ]]; then
# Old style paths with additional duckdb-wasm
aws s3 cp $ext.compressed s3://$5/duckdb-wasm/$1/$2/duckdb-wasm/$3/$4/$1.duckdb_extension.wasm --acl public-read --content-encoding br --content-type="application/wasm"
# New style paths for duckdb-wasm, more uniforms
aws s3 cp $ext.compressed s3://$5/$1/$2/$3/$4/$1.duckdb_extension.wasm --acl public-read --content-encoding br --content-type="application/wasm"
else
aws s3 cp $ext.compressed s3://$5/$1/$2/$3/$4/$1.duckdb_extension.gz --acl public-read
fi
Expand All @@ -83,7 +86,10 @@ fi
# upload to latest version
if [[ $6 = 'true' ]]; then
if [[ $4 == wasm* ]]; then
# Old style paths with additional duckdb-wasm
aws s3 cp $ext.compressed s3://$5/duckdb-wasm/$3/$4/$1.duckdb_extension.wasm --acl public-read --content-encoding br --content-type="application/wasm"
# New style paths for duckdb-wasm, more uniforms
aws s3 cp $ext.compressed s3://$5/$3/$4/$1.duckdb_extension.wasm --acl public-read --content-encoding br --content-type="application/wasm"
else
aws s3 cp $ext.compressed s3://$5/$3/$4/$1.duckdb_extension.gz --acl public-read
fi
Expand Down

0 comments on commit 2e6fff5

Please sign in to comment.