Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Fix extension for basename in test script
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Sep 24, 2019
1 parent fb497ba commit 349eed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
mkdir temp

for script in test-scripts/*.lua; do
echo "Running $(basename "$script" .txt)"
echo "Running $(basename "$script" .lua)"
./target/debug/remodel "$script"
done

Expand All @@ -21,7 +21,7 @@ if [ ! -z "${REMODEL_AUTH_TESTS}" ]; then
echo ""

for script in test-scripts-extra/*.lua; do
echo "Running $(basename "$script" .txt)"
echo "Running $(basename "$script" .lua)"
./target/debug/remodel "$script"
done
fi

0 comments on commit 349eed4

Please sign in to comment.