2024-11-18 17:07:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
|
|
|
|
# Se positionner sur la racine du projet
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
cd ${DIR}
|
|
|
|
cd ../..
|
|
|
|
DIR=$(pwd)
|
|
|
|
|
|
|
|
bin/console d:s:u --force --complete
|
2024-12-26 19:01:07 +01:00
|
|
|
bin/console app:init
|
2024-11-18 17:07:22 +01:00
|
|
|
|
|
|
|
exec $@
|