diff --git a/scripts/bundleUpdate.sh b/scripts/bundleUpdate.sh index 6d756e0b08..d84779accd 100644 --- a/scripts/bundleUpdate.sh +++ b/scripts/bundleUpdate.sh @@ -12,12 +12,11 @@ RUNTIME_VERSION=$(cat metadata.json | jq -r '.runtimeVersion') BUNDLE_VERSION=$(date +%s) DEPLOYMENT_URL="https://updates.bsky.app/v1/upload?runtime-version=$RUNTIME_VERSION&bundle-version=$BUNDLE_VERSION" - tar czvf bundle.tar.gz ./* echo "Deploying to $DEPLOYMENT_URL..." -curl -o - --form 'bundle=@./bundle.tar.gz' \ +curl -o - --form "bundle=@./bundle.tar.gz" \ --user "bsky:$DENNIS_API_KEY" \ --basic "$DEPLOYMENT_URL" \ /