Skip to content

Commit 6a94b80

Browse files
fix prereleases after rename of cloudflare package directory - take 2
1 parent 4fadf97 commit 6a94b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/utils/update-version.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const assert = require("node:assert");
1616
try {
1717
const packagePath = getArgs()[0];
1818
assert(packagePath, "Required package path missing.");
19-
const packageJsonPath = `${packagePath}/package.json`;
19+
const packageJsonPath = `packages/${packagePath}/package.json`;
2020
const pkg = JSON.parse(readFileSync(packageJsonPath));
2121
const stdout = execSync("git rev-parse --short HEAD", { encoding: "utf8" });
2222
pkg.version = "0.0.0-" + stdout.trim();

0 commit comments

Comments
 (0)