10 lines
204 B
Bash
10 lines
204 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -o errexit # always exit on error
|
||
|
|
set -o pipefail # don't ignore exit codes when piping output
|
||
|
|
|
||
|
|
echo "-----> Running post-compile script"
|
||
|
|
|
||
|
|
# Cleanup
|
||
|
|
rm -rf docker docs env.d gitlint
|