-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfix: Changed directory in init script from src/stub/ to resources/ (…
- Loading branch information
1 parent
4afb6ee
commit bd18c79
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
@echo off | ||
|
||
if ["%~1"]==["json"] ( | ||
copy /-y src\stubs\Homestead.json Homestead.json | ||
copy /-y resources\Homestead.json Homestead.json | ||
) | ||
if ["%~1"]==[""] ( | ||
copy /-y src\stubs\Homestead.yaml Homestead.yaml | ||
copy /-y resources\Homestead.yaml Homestead.yaml | ||
) | ||
|
||
copy /-y src\stubs\after.sh after.sh | ||
copy /-y src\stubs\aliases aliases | ||
copy /-y resources\after.sh after.sh | ||
copy /-y resources\aliases aliases | ||
|
||
echo Homestead initialized! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [[ -n "$1" ]]; then | ||
cp -i src/stubs/Homestead.json Homestead.json | ||
cp -i resources/Homestead.json Homestead.json | ||
else | ||
cp -i src/stubs/Homestead.yaml Homestead.yaml | ||
cp -i resources/Homestead.yaml Homestead.yaml | ||
fi | ||
|
||
cp -i src/stubs/after.sh after.sh | ||
cp -i src/stubs/aliases aliases | ||
cp -i resources/after.sh after.sh | ||
cp -i resources/aliases aliases | ||
|
||
echo "Homestead initialized!" |
bd18c79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Best regards to all: Query: Please: I need to change/roll back the installation of Homestead 14.5.* to a previous version compatible with 32-bit Windows; How can/should I do this? Or, how can you install this version https://github.com/laravel/homestead/tree/v12.2.0 ?Thank you very much.