Skip to content

Commit

Permalink
Merge pull request #4 from intercreate/fix/#3/ic-bundle-zip-bad-on-wi…
Browse files Browse the repository at this point in the history
…ndows

fix: use --format=zip (fixes #3)
  • Loading branch information
JPHutchins authored Sep 6, 2024
2 parents 2f90670 + 6257825 commit 9fd06fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ic_bundle.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function(ic_bundle)

add_custom_command(
OUTPUT "${_FULL_NAME}.zip"
COMMAND ${CMAKE_COMMAND} -E tar cf "${_FULL_NAME}.zip" "${_FULL_NAME}"
COMMAND ${CMAKE_COMMAND} -E tar cf "${_FULL_NAME}.zip" --format=zip "${_FULL_NAME}"
DEPENDS ${artifact_list}
)

Expand Down

0 comments on commit 9fd06fb

Please sign in to comment.