salesforce-deploy-tool 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/sfd +2 -2
- data/lib/salesforcedeploytool/version.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: 9c8b7bb7d841448687cc49bbb8d79e7bc03316d4
|
4
|
+
data.tar.gz: 1f83f75547014fdbe155f0b690290d3c5b8c6812
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ace8b9b3b536825a7dabc5a880bc49d905b0dc2140633f3991c17161ac3b719cbb50f27c0bd6caa00fa6a69c14aa45ddc1325973d530b250cf6eec44cc78f1b
|
7
|
+
data.tar.gz: a30f3222ca91e8846205883c748c02507cbc98e1dc1ed935804f529e5ef46ac6a6cae7aad080d9795e87233ef5ed32771539193ed379ae7dd73fab6b9310b49a
|
data/bin/sfd
CHANGED
@@ -57,7 +57,7 @@ command :pull do |c|
|
|
57
57
|
c.action do |args, options|
|
58
58
|
|
59
59
|
# Parameter validation:
|
60
|
-
if options.env.nil?
|
60
|
+
if options.env.nil? and sandbox.nil?
|
61
61
|
puts "error: please specify the environment to pull from using --env"
|
62
62
|
exit 1
|
63
63
|
end
|
@@ -91,7 +91,7 @@ command :push do |c|
|
|
91
91
|
c.action do |args, options|
|
92
92
|
|
93
93
|
# Parameter validation:
|
94
|
-
if options.env.nil?
|
94
|
+
if options.env.nil? and sandbox.nil?
|
95
95
|
puts "error: please specify the environment to pull from using --env"
|
96
96
|
exit 1
|
97
97
|
end
|