mirror of
https://github.com/suitenumerique/meet.git
synced 2026-07-26 11:58:53 +00:00
117677bd14
add PaaS deployment scripts, tested on Scalingo
10 lines
204 B
Bash
Executable File
10 lines
204 B
Bash
Executable File
#!/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
|