Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrolich committed Jul 24, 2023
1 parent 7de60f3 commit 92fa372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/compile.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
echo "Test: It should compile"
cd ../testrepo

if RUST_BACKTRACE=1 ../target/release/rewatch clean .;
if RUST_BACKTRACE=1 ../target/release/rewatch clean . &> /dev/null;
then
echo "✅ - Repo Cleaned"
else
echo "❌ - Error Cleaning Repo"
exit 1
fi

if RUST_BACKTRACE=1 ../target/release/rewatch build .;
if RUST_BACKTRACE=1 ../target/release/rewatch build . &> /dev/null;
then
echo "✅ - Repo Built"
else
Expand Down

0 comments on commit 92fa372

Please sign in to comment.