diff options
| -rw-r--r-- | linux/make_artifacts.sh | 4 |
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;}') |
