12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
|
|
#!/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"
|
||
|
|
|
||
|
|
# Remove all the files we don't need
|
||
|
|
rm -rf src docker env.d .cursor .github compose.yaml README.md .cache
|
||
|
|
|
||
|
|
chmod +x bin/scalingo_run_web
|