diff options
author | elijah <elijah@riseup.net> | 2017-06-27 12:59:04 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2017-06-27 12:59:04 -0700 |
commit | c3e773f1b353d25c10e27c0bae1bbf05370c0578 (patch) | |
tree | 66eb1c6f2819c790437e2d9d41227fe9317ca0be /lib/leap_cli | |
parent | 375b3dfc6eda520272650c2d7212e7a3226eabdd (diff) |
new command - clone stable branch of platform, not master.
Diffstat (limited to 'lib/leap_cli')
-rw-r--r-- | lib/leap_cli/commands/new.rb | 4 |
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 |