aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-01-20 12:17:08 -0800
committerJohn MacFarlane <[email protected]>2023-01-20 12:17:08 -0800
commit02b72150a74911cd142d510b177f7a88bf20c89b (patch)
tree1f913846d2a732f38a806e80f5f08221978a4d5d /linux
parent2a8b6783fdbc8d12018e3c708d357ba0b5252b52 (diff)
Fix two small problems in make_artifacts.sh
Diffstat (limited to 'linux')
-rw-r--r--linux/make_artifacts.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/make_artifacts.sh b/linux/make_artifacts.sh
index 2c85b6e06..aee62245b 100644
--- a/linux/make_artifacts.sh
+++ b/linux/make_artifacts.sh
@@ -36,10 +36,10 @@ strip "$ARTIFACTS/pandoc"
file "$ARTIFACTS/pandoc" | grep "statically linked"
# Confirm that it has +lua and +server support
-"./$ARTIFACTS/pandoc --version" | grep -q '+server +lua'
+"$ARTIFACTS/pandoc --version" | grep -q '+server +lua'
# Confirm that it has data files baked in:
-strings "./$ARTIFACTS/pandoc" | grep -q '\$title\$'
+strings "$ARTIFACTS/pandoc" | grep -q '\$title\$'
make_deb() {
VERSION=$("$ARTIFACTS"/pandoc --version | awk '{print $2; exit;}')