diff options
| author | John MacFarlane <[email protected]> | 2023-01-20 12:17:08 -0800 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-01-20 12:17:08 -0800 |
| commit | 02b72150a74911cd142d510b177f7a88bf20c89b (patch) | |
| tree | 1f913846d2a732f38a806e80f5f08221978a4d5d /linux | |
| parent | 2a8b6783fdbc8d12018e3c708d357ba0b5252b52 (diff) | |
Fix two small problems in make_artifacts.sh
Diffstat (limited to 'linux')
| -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;}') |
