aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--build-id2
-rw-r--r--packages/bun-cli-darwin-x64/package.json2
-rw-r--r--packages/bun-cli/package.json2
4 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 21ba4db28..e5866a2eb 100644
--- a/Makefile
+++ b/Makefile
@@ -84,9 +84,9 @@ release-cli-push:
npm publish /tmp/bun-cli-$(PACKAGE_JSON_VERSION).tgz
release-mac-push:
- cd packages/bun-cli-darwin-x64 && npm pack --pack-destination /tmp/
- gh release upload $(BUN_BUILD_TAG) --clobber /tmp/bun-cli-darwin-x64-$(PACKAGE_JSON_VERSION).tgz
- npm publish /tmp/bun-cli-darwin-x64-$(PACKAGE_JSON_VERSION).tgz
+ cd $(PACKAGE_DIR) && npm pack --pack-destination /tmp/
+ gh release upload $(BUN_BUILD_TAG) --clobber /tmp/bun-cli-$(TRIPLET)-$(PACKAGE_JSON_VERSION).tgz
+ npm publish /tmp/bun-cli-$(TRIPLET)-$(PACKAGE_JSON_VERSION).tgz
jsc-copy-headers:
diff --git a/build-id b/build-id
index 48082f72f..b1bd38b62 100644
--- a/build-id
+++ b/build-id
@@ -1 +1 @@
-12
+13
diff --git a/packages/bun-cli-darwin-x64/package.json b/packages/bun-cli-darwin-x64/package.json
index 6dbd54c0d..7bc5b4e9c 100644
--- a/packages/bun-cli-darwin-x64/package.json
+++ b/packages/bun-cli-darwin-x64/package.json
@@ -4,5 +4,5 @@
},
"name": "bun-cli-darwin-x64",
"repository": "https://github.com/jarred-sumner/bun",
- "version": "0.0.0-12"
+ "version": "0.0.0-13"
}
diff --git a/packages/bun-cli/package.json b/packages/bun-cli/package.json
index 7029f2b99..f0c780c91 100644
--- a/packages/bun-cli/package.json
+++ b/packages/bun-cli/package.json
@@ -9,5 +9,5 @@
"postinstall": "node postinstall.js",
"prepublishOnly": "rm -rf ./bin/bun; chmod +x ./reset-bin.js; cp ./reset-bin.js ./bin/bun"
},
- "version": "0.0.0-12"
+ "version": "0.0.0-13"
}