12 lines
219 B
Bash
12 lines
219 B
Bash
|
#!/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
|
||
|
|
||
|
exec $@
|