aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-03-12 13:59:46 -0700
committerJohn MacFarlane <[email protected]>2023-03-12 13:59:46 -0700
commit3175be75ad8c4420da962cc09e3472b5e151f1cf (patch)
tree42e4ed354c66a5a691f6182e024b8bff990196d0 /linux
parenta30927bb954410d8211f2edcd755ab947a865123 (diff)
Fix BINPATH issues in linux and macos release build scripts.
Diffstat (limited to 'linux')
-rw-r--r--linux/make_artifacts.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/make_artifacts.sh b/linux/make_artifacts.sh
index 972b07b43..b843c154b 100644
--- a/linux/make_artifacts.sh
+++ b/linux/make_artifacts.sh
@@ -30,7 +30,7 @@ clean_up() {
trap clean_up EXIT
echo "Copying and stripping pandoc binary"
-cp "$BINPATH/pandoc" "$ARTIFACTS/pandoc"
+cp "$BINPATH" "$ARTIFACTS/pandoc"
strip "$ARTIFACTS/pandoc"
echo "Checking that the binary is statically linked..."