diff options
author | EuAndreh <eu@euandre.org> | 2021-08-21 07:29:36 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-21 07:29:36 -0300 |
commit | 51ea434bc4ed6d3b397a0c40dd8734044451f7b0 (patch) | |
tree | 8f14987976fc36834f01ad6e391b67562d59e5f2 /tests/build-sample.sh | |
parent | src/gistatic.c: Use <OBJECT>_<PART>_<VERB> nomenclature for function names (diff) | |
download | gistatic-51ea434bc4ed6d3b397a0c40dd8734044451f7b0.tar.gz gistatic-51ea434bc4ed6d3b397a0c40dd8734044451f7b0.tar.xz |
tests/build-sample.sh: Also build $PWD
Diffstat (limited to '')
-rwxr-xr-x | tests/build-sample.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/build-sample.sh b/tests/build-sample.sh index ca5ae0d..e7057e0 100755 --- a/tests/build-sample.sh +++ b/tests/build-sample.sh @@ -2,7 +2,7 @@ set -eu ./src/gistatic -i -o tmp/ tests/resources/repositories/* -for r in tests/resources/repositories/*; do +for r in tests/resources/repositories/* $PWD; do NAME="$(basename "$r")" mkdir -p "tmp/$NAME" ./src/gistatic -u "https://example.com/$NAME" -o "tmp/$NAME" "$r" |