diff --git a/init.bat b/init.bat index c8d2fb9f1..62b30f3af 100644 --- a/init.bat +++ b/init.bat @@ -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! diff --git a/init.sh b/init.sh index 10a7ab102..f5a66aed8 100644 --- a/init.sh +++ b/init.sh @@ -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!"