summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
Diffstat (limited to 'check')
-rwxr-xr-xcheck6
1 files changed, 3 insertions, 3 deletions
diff --git a/check b/check
index fb5f9c6..504b72d 100755
--- a/check
+++ b/check
@@ -48,7 +48,7 @@ docgen() {
# Run unit tests for the Python template.
(set -eu
- cd share/templates/python
+ cd share/python/template
for x in *_tests.py
do
$hideok echo "Unit tests: $x"
@@ -58,13 +58,13 @@ docgen() {
if command -v flake8 > /dev/null
then
- $hideok flake8 share/templates/python lib/*.py
+ $hideok flake8 share/python/template lib/*.py
fi
if command -v shellcheck > /dev/null
then
shellcheck check ./*.sh
- find share/templates/bash -name '*.sh' -exec shellcheck '{}' +
+ find share/bash/template -name '*.sh' -exec shellcheck '{}' +
fi
$hideok cargo build --all-targets