salesforce-deploy-tool 0.9.3 → 0.9.4
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/sf +4 -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: 104d2dbf967fdd2db6d3df24d7c5e25425f1bee3
|
|
4
|
+
data.tar.gz: 495c840e49d1043c0858e5157106371ab2064a08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38a2ece138888d62658a516cb84f970aee0690bc331ad04c011c8b24407d283393b1b0aff5d4066098457a77928dbd3d48fa1c254a2c0785275a02747f356687
|
|
7
|
+
data.tar.gz: c9b0a29a6236cdc13f57555b413270d411d180712002ea3922b5acb01ad88a9c898869e0a6e96551cc70f3958a13d29169a47b4b1dd21a879aaf09150446e410
|
data/bin/sf
CHANGED
|
@@ -154,9 +154,9 @@ command :push do |c|
|
|
|
154
154
|
# a field to be deleted, then we first need to push the class to remove that
|
|
155
155
|
# reference and only then SF will allow us to remove the field on the second
|
|
156
156
|
# push
|
|
157
|
-
sfdt.build_number = options.build_number if not options.build_number.nil?
|
|
158
|
-
sfdt.set_version
|
|
159
157
|
begin
|
|
158
|
+
sfdt.build_number = options.build_number if not options.build_number.nil?
|
|
159
|
+
sfdt.set_version
|
|
160
160
|
sfdt.push
|
|
161
161
|
ensure
|
|
162
162
|
sfdt.clean_version
|
|
@@ -189,6 +189,8 @@ command :push do |c|
|
|
|
189
189
|
|
|
190
190
|
# Destructive push
|
|
191
191
|
begin
|
|
192
|
+
sfdt.build_number = options.build_number if not options.build_number.nil?
|
|
193
|
+
sfdt.set_version
|
|
192
194
|
sfdt.push
|
|
193
195
|
ensure
|
|
194
196
|
sfdt.clean_version
|