7 lines
82 B
Bash
Executable File
7 lines
82 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Deleting Directorys"
|
|
rm -rf build
|
|
rm -rf code
|
|
|
|
echo "Finished!" |