summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2017-06-27 12:59:04 -0700
committerelijah <elijah@riseup.net>2017-06-27 12:59:04 -0700
commitc3e773f1b353d25c10e27c0bae1bbf05370c0578 (patch)
tree66eb1c6f2819c790437e2d9d41227fe9317ca0be
parent375b3dfc6eda520272650c2d7212e7a3226eabdd (diff)
new command - clone stable branch of platform, not master.
-rw-r--r--lib/leap_cli/commands/new.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/commands/new.rb b/lib/leap_cli/commands/new.rb
index 6b60e7d..b590723 100644
--- a/lib/leap_cli/commands/new.rb
+++ b/lib/leap_cli/commands/new.rb
@@ -84,8 +84,8 @@ module LeapCli; module Commands
assert_bin! 'git'
ensure_dir platform_dir
Dir.chdir(platform_dir) do
- log :cloning, "leap_platform into #{platform_dir}"
- pty_run "git clone --branch master #{DEFAULT_REPO} ."
+ log :cloning, "leap_platform:stable into #{platform_dir}"
+ pty_run "git clone --branch stable #{DEFAULT_REPO} ."
pty_run 'git submodule update --init'
end
else