Skip to content

Commit 5ac9dc8

Browse files
moved rename of .env file to install task instead of its own task
1 parent c57b93c commit 5ac9dc8

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

setup-laravel.sh

+1-8
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,8 @@ if [[ $laravel == "yes" ]]
1111
read appname
1212
laravel new $appname
1313
cd $appname
14-
php artisan key:generate
15-
fi
16-
17-
# Update app/bootstrap/start.php with env function
18-
echo -n "Set up Development Environment? [yes|no] "
19-
read -e development
20-
if [[ $development == "yes" ]]
21-
then
2214
mv .env.example .env
15+
php artisan key:generate
2316
fi
2417

2518
echo -n "Need a Git Repository [yes|no] : "

0 commit comments

Comments
 (0)