From 68686f7c2f502b1284e4a935c5ef212079077351 Mon Sep 17 00:00:00 2001 From: Pranav Gaddamadugu Date: Thu, 6 Oct 2022 10:31:58 -0700 Subject: [PATCH] Add clean script --- clean.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 clean.sh diff --git a/clean.sh b/clean.sh new file mode 100755 index 0000000..b25a506 --- /dev/null +++ b/clean.sh @@ -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 ..