Skip to content

Commit f64bcf9

Browse files
committed
Fix vsce file path
1 parent 562847f commit f64bcf9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/bump-version.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@ const __dirname = fileURLToPath(new URL('.', import.meta.url))
1010
// Let `vsce` get the metadata for the extension
1111
// Querying the marketplace API directly is not supported or recommended
1212
let result = spawnSync(
13-
path.resolve(__dirname, '../../node_modules/.bin/vsce'),
13+
path.resolve(__dirname, '../../packages/vscode-tailwindcss/node_modules/.bin/vsce'),
1414
['show', 'bradlc.vscode-tailwindcss', '--json'],
1515
{ encoding: 'utf8' },
1616
)
1717

1818
let metadata = JSON.parse(result.stdout)
1919

2020
if (!metadata) {
21-
console.error(result.stdout)
22-
console.error(result.stderr)
2321
console.error(result.error)
2422
throw new Error('Failed to get extension metadata')
2523
}

0 commit comments

Comments
 (0)