We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b92e2 commit 055cc0cCopy full SHA for 055cc0c
build.py
@@ -2,8 +2,10 @@
2
3
import subprocess
4
import sys
5
+from os.path import join
6
7
if __name__ == "__main__":
8
OUT = 'out/cquery.vsix'
- VSCE = 'node_modules/.bin/' + ('vsce.cmd' if sys.platform == 'win32' else 'vsce')
9
+ VSCE = 'vsce.cmd' if sys.platform == 'win32' else 'vsce'
10
+ VSCE = join('node_modules', '.bin', VSCE)
11
sys.exit(subprocess.call([VSCE, 'package', '-o', OUT]))
0 commit comments