Skip to content

Commit

Permalink
Merge pull request #138 from Byron/cargo-zng-macos
Browse files Browse the repository at this point in the history
`cargo-zng` now works on MacOS
  • Loading branch information
Byron authored Jul 23, 2023
2 parents dce65df + 801228a commit 8adc826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cargo-zng
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eu
trap 'rm -rf "$tempdir"' 0 INT
tempdir="$(mktemp -d)"
cargo package -l --allow-dirty | grep -v '^Cargo\.toml\.orig$' | tar --verbatim-files-from --files-from=- -cf - | tar -C "$tempdir" -xf -
cargo package -l --allow-dirty | grep -v '^Cargo\.toml\.orig$' | tar --files-from=- -cf - | tar -C "$tempdir" -xf -
cp Cargo-zng.toml "$tempdir/Cargo.toml"
cp -a systest "$tempdir/systest"
mv "$tempdir/systest/Cargo-zng.toml" "$tempdir/systest/Cargo.toml"
Expand Down

0 comments on commit 8adc826

Please sign in to comment.