Skip to content

Commit

Permalink
Switch to --dev for similar to installer syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstauffer committed Aug 17, 2016
1 parent 629fe13 commit ca7bd7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lambo
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ showhelp()
echo "${green} -e, --editor EDITOR${reset} Specify an editor to run '${green}EDITOR .${reset}' with after"
echo "${green} -m, --message \"message\"${reset} Customize the initial commit message"
echo "${green} -p, --path PATH${reset} Customize the path in which the new project will be created"
echo "${green} -d, --develop${reset} Use Composer to install on the develop branch"
echo "${green} -d, --dev${reset} Use Composer to install on the develop branch"
quit
}

Expand Down Expand Up @@ -81,7 +81,7 @@ do
EDITOR="$2"
shift
;;
-d|--develop)
-d|--develop|--dev)
DEVELOP=true
shift
;;
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ This will `laravel new superApplication`, change into that directory, make an in
lambo superApplication -e subl
```

- `-d` or `--develop` to choose the `develop` branch instead of `master`, getting the beta install
- `-d` or `--dev` to choose the `develop` branch instead of `master`, getting the beta install

```bash
lambo superApplication --develop
lambo superApplication --dev
```

## Requirements
Expand Down

0 comments on commit ca7bd7c

Please sign in to comment.