10 lines
132 B
Bash
Executable file
10 lines
132 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d vendor/ ];
|
|
then
|
|
composer install
|
|
fi
|
|
|
|
rm -rf output_dev/
|
|
./vendor/bin/sculpin generate --server --watch
|