appbundle-updater 0.6.6 → 0.6.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/appbundle-updater +2 -1
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c594f61e0be345e50bdf82ac45e05f91ef8450426f244e4219984b0f2e846bd7
|
4
|
+
data.tar.gz: 53baf60fbf15cfb87af018bd74422cd65f4844a459de7c4218c12b5c45c56229
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 032060e2deeb235be6ad3290e8508f63a17becb11ba67181a4cc4fec5fc5488b2911878bedbe255a91bcb82e53d057f9e64dc11bd7bc9ffb12e200ff96a7d90d
|
7
|
+
data.tar.gz: 173b298fac4ffa7fa24b35b85bcbc9471bc3e179dbdcb34df16d70b56f357aa5566920424e6c80723834633d29ad64b539dbc7fa10ee24295c8e5c3bc37d9cc7
|
data/bin/appbundle-updater
CHANGED
@@ -192,6 +192,7 @@ class Updater
|
|
192
192
|
@app = options[:app]
|
193
193
|
@ref = options[:ref]
|
194
194
|
@tarball = options[:tarball]
|
195
|
+
@extra_bin_files = options[:extra_bin_files]
|
195
196
|
@repo = options[:repo] || @app.repo
|
196
197
|
end
|
197
198
|
|
@@ -254,7 +255,7 @@ class Updater
|
|
254
255
|
banner("Updating appbundler binstubs for #{app}")
|
255
256
|
Dir.chdir(app_dir) do
|
256
257
|
cmd = "#{bin_dir.join("appbundler")} #{app_dir} #{chefdk.join("bin")}"
|
257
|
-
cmd += " --extra-bin-files #{
|
258
|
+
cmd += " --extra-bin-files #{@extra_bin_files}" if @extra_bin_files
|
258
259
|
ruby(cmd)
|
259
260
|
end
|
260
261
|
|