Skip to content

Commit

Permalink
Fix publish script
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <[email protected]>
  • Loading branch information
paulober committed Sep 10, 2024
1 parent dcf1135 commit 617eacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ chmod +x "$SCRIPT_DIR/package.sh"
"$SCRIPT_DIR/package.sh"

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

Expand Down

0 comments on commit 617eacb

Please sign in to comment.