Created
March 13, 2017 22:27
-
-
Save rfay/2d8c92095cfe2cbf9d341a8fc37b6f45 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$ git diff | |
diff --git a/cmd/ddev/cmd/start.go b/cmd/ddev/cmd/start.go | |
index 4c0ce0c..4e26895 100644 | |
--- a/cmd/ddev/cmd/start.go | |
+++ b/cmd/ddev/cmd/start.go | |
@@ -73,7 +73,7 @@ func init() { | |
StartCmd.Flags().StringVarP(&dbImage, "db-image", "", "", "Change the image used for the app's database server") | |
StartCmd.Flags().StringVarP(&webImageTag, "web-image-tag", "", "", "Override the default web image tag") | |
StartCmd.Flags().StringVarP(&dbImageTag, "db-image-tag", "", "", "Override the default web image tag") | |
- StartCmd.Flags().StringVarP(&plugin, "plugin", "p", "legacy", "Choose which plugin to use") | |
+ StartCmd.Flags().StringVarP(&plugin, "plugin", "p", "local", "Choose which plugin to use") | |
StartCmd.Flags().BoolVarP(&skipYAML, "skip-yaml", "", false, "Skip creating the docker-compose.yaml.") | |
StartCmd.Flags().StringVarP(&appClient, "client", "c", "", "Client name") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment