9 lines
138 B
Bash
Executable file
9 lines
138 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d vendor/ ];
|
|
then
|
|
composer install
|
|
fi
|
|
|
|
./vendor/bin/sculpin generate --server --watch --clean --no-interaction
|