1234567891011121314151617181920212223242526272829303132333435 |
- #!/bin/bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -u -e
- printf "Cleaning the previous build of ich9deblob\n"
- cd "resources/utilities/ich9deblob/"
- make clean
- cd "../../../"
- printf "\n\n"
|