Skip to content

Commit

Permalink
ignore windows binaries when creating linux bundle (#2928)
Browse files Browse the repository at this point in the history
  • Loading branch information
jossemargt-3pillar authored May 18, 2022
1 parent d96312a commit ada8476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/package-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ mkdir -p dist/artifacts

### (make the tarball)
if [ -z "${PACKAGE_SKIP_TARBALL}" ]; then
tar -czf dist/artifacts/${RELEASE}.tar.gz -C dist/bundle $(find dist/bundle -mindepth 1 -maxdepth 1 -type d -exec basename {} \;)
tar -czf dist/artifacts/${RELEASE}.tar.gz -C dist/bundle --exclude '*.exe' --exclude '*.ps*' $(find dist/bundle -mindepth 1 -maxdepth 1 -type d -exec basename {} \;)
fi

0 comments on commit ada8476

Please sign in to comment.