Skip to content

Commit dd80ca4

Browse files
added task for elixer
1 parent 17088a4 commit dd80ca4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

setup-laravel.sh

+7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ if [[ $laravel == "yes" ]]
1616
php artisan app:name $appname
1717
fi
1818

19+
echo -n "Will you be using elixer? [yes|no] : "
20+
read -e elixer
21+
if [[ $elixer == "yes" ]]
22+
then
23+
npm install
24+
fi
25+
1926
echo -n "Need a Git Repository [yes|no] : "
2027
read -e git
2128
if [[ $git == 'yes' ]]

0 commit comments

Comments
 (0)