opzworks 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/opzworks/commands/include/manage_berks_repos.rb +3 -2
- data/lib/opzworks/meta.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7698febfaf963b46c1f624109efe82aa9efbb41b
|
4
|
+
data.tar.gz: 328d933bf61e97a034712c15eb6efa1e1292f776
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef32d7d217453da1a83a1f5c5d9fad2c63e49d6c3b4e2cb1e76d348405194d0658caade49af0dbd67bbc34eb484079baea5a8aee58090ef9d527bff62e3529af
|
7
|
+
data.tar.gz: 08f5435373c44b23f3c3635c9587ca50ea590205e271ba9761a3365f0382e3e17162baf1ac574d6793f4e89fb0178a5d3cd305b8948ddb0c92a20732147fe4b8
|
@@ -7,11 +7,12 @@ def manage_berks_repos
|
|
7
7
|
puts "#{@target_path} does not exist, and 'berks-github-org' is not set in ~/.aws/config, skipping.".foreground(:yellow)
|
8
8
|
@berks_repo_failure = true
|
9
9
|
else
|
10
|
+
repo = "git@github.com:#{config.berks_github_org}/opsworks-#{@project}.git"
|
10
11
|
puts "#{@target_path} does not exist!".foreground(:red)
|
11
|
-
puts 'Attempting git clone of '.foreground(:blue) +
|
12
|
+
puts 'Attempting git clone of '.foreground(:blue) + repo.foreground(:green)
|
12
13
|
run_local <<-BASH
|
13
14
|
cd #{config.berks_repository_path}
|
14
|
-
git clone
|
15
|
+
git clone #{repo}
|
15
16
|
BASH
|
16
17
|
end
|
17
18
|
else
|
data/lib/opzworks/meta.rb
CHANGED