Skip to content

Commit

Permalink
Use POSIX compaible script in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed May 28, 2024
1 parent 3bc174a commit e6b4da4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ build-c-bindings:
release-c-bindings:
mkdir -p dist/dnssec-prover
cp uniffi/src/dnssec_prover.cs dist/dnssec-prover
if [[ "$(shell uname)" == "Darwin" ]]; then \
if [ "$(shell uname)" = "Darwin" ]; then \
cp uniffi/target/release/libdnssec_prover_uniffi.dylib dist/dnssec-prover; \
elif [[ "$(shell uname -o)" == "Msys" ]]; then \
elif [ "$(shell uname -o)" = "Msys" ]; then \
cp uniffi/target/release/libdnssec_prover_uniffi.dll dist/dnssec-prover; \
else \
cp uniffi/target/release/libdnssec_prover_uniffi.so dist/dnssec-prover; \
Expand Down

0 comments on commit e6b4da4

Please sign in to comment.