Skip to content

Commit 48af73d

Browse files
authored
Fix publish-npm script (#7093)
1 parent c56b95b commit 48af73d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/types/scripts/publish-npm.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function commitVersionChanges(version) {
6464

6565
try {
6666
const status = execSync("git status --porcelain", { encoding: "utf8" })
67-
const relevantChanges = status.split("\n").filter((line) => line.includes("packages/sdk/npm/package"))
67+
const relevantChanges = status.split("\n").filter((line) => line.includes("packages/types/npm/package"))
6868

6969
if (relevantChanges.length === 0) {
7070
console.log(" ⚠️ No version changes to commit")

0 commit comments

Comments
 (0)