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.
2 parents 93ad410 + 692b3bd commit 5afd207Copy full SHA for 5afd207
scripts/publish.sh
@@ -34,8 +34,7 @@ for platform in "${platforms[@]}"; do
34
rm -r "dist/scripts/wrapper_$platform"
35
done
36
37
-# Find all .vsix files and join them into a space-separated string
38
-package_paths=$(find . -name "*.vsix" -type f -exec echo -n "{} " \;)
39
-
40
-# Publish the packages
41
-npx @vscode/vsce publish --packagePath "$package_paths"
+# Find all .vsix files and publish them one by one
+find . -name "*.vsix" -type f | while read -r package_path; do
+ npx @vscode/vsce publish --packagePath "$package_path"
+done
0 commit comments