Skip to content

Commit 617eacb

Browse files
committed
Fix publish script
Signed-off-by: paulober <[email protected]>
1 parent dcf1135 commit 617eacb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ chmod +x "$SCRIPT_DIR/package.sh"
1414
"$SCRIPT_DIR/package.sh"
1515

1616
# Find all .vsix files except the one without a platform prefix and publish them one by one
17-
find . -type f -name "micropico-$RELEASE_TAG_NAME-*.vsix" ! -name "micropico-$RELEASE_TAG_NAME.vsix" | while read file -r package_path; do
17+
find . -type f -name "micropico-$RELEASE_TAG_NAME-*.vsix" ! -name "micropico-$RELEASE_TAG_NAME.vsix" | while read -r package_path; do
1818
# Default target flags (for non-darwin platforms)
1919
target_flags=""
2020

0 commit comments

Comments
 (0)