aboutsummaryrefslogtreecommitdiff
path: root/tests/dev-integration.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-08-06 16:35:39 -0300
committerEuAndreh <eu@euandre.org>2021-08-06 16:35:39 -0300
commita8d7c1a7ab8507813bcc3a0c7d75fe0f6117fc02 (patch)
tree4a55025dde769d3198a4ab155c5d33514ef9e4db /tests/dev-integration.sh
parentmv aux/workflow/manpages.sh doc/manpages.sh (diff)
downloadgistatic-a8d7c1a7ab8507813bcc3a0c7d75fe0f6117fc02.tar.gz
gistatic-a8d7c1a7ab8507813bcc3a0c7d75fe0f6117fc02.tar.xz
tests/dev-integration.sh: Address ShellCheck offenses
Diffstat (limited to 'tests/dev-integration.sh')
-rwxr-xr-xtests/dev-integration.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/dev-integration.sh b/tests/dev-integration.sh
index a82ce14..5f50d31 100755
--- a/tests/dev-integration.sh
+++ b/tests/dev-integration.sh
@@ -11,6 +11,13 @@ VALGRIND_FLAGS='
--error-exitcode=1
'
+# shellcheck disable=2086
valgrind $VALGRIND_FLAGS ./src/gistatic.t
-valgrind $VALGRIND_FLAGS ./src/gistatic -o `mkdtemp` -u 'https://example.com' tests/resources/repositories/repo-1
-valgrind $VALGRIND_FLAGS ./src/gistatic -o `mkdtemp` -i tests/resources/repositories/*
+
+# shellcheck disable=2086
+valgrind $VALGRIND_FLAGS ./src/gistatic -o "$(mkdtemp)" \
+ -u 'https://example.com' tests/resources/repositories/repo-1
+
+# shellcheck disable=2086
+valgrind $VALGRIND_FLAGS ./src/gistatic -o "$(mkdtemp)" \
+ -i tests/resources/repositories/*