Skip to content

Commit

Permalink
Add clean script
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Oct 6, 2022
1 parent 819f442 commit 68686f7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/bash
# A script to clean all examples.
# Run this script from the root directory of the workshop repository.

# Clean the auction example.
cd auction
leo clean
cd ..

# Clean the basic bank example.
cd basic_bank
leo clean
cd ..

# Clean the battleship example.
cd battleship
leo clean
cd ..

# Clean the tictactoe example.
cd tictactoe
leo clean
cd ..

# Clean the token example.
cd token
leo clean
cd ..

# Clean the vote example.
cd vote
leo clean
cd ..

0 comments on commit 68686f7

Please sign in to comment.