dapp 0.7.13 → 0.7.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9192dd5a0de1a6861a0a75c511a04ed72089d3d1
4
- data.tar.gz: f1bd0b414aad5d019dbc4d8cd576ace3619f03ee
3
+ metadata.gz: 4ce2d9eae2b707e324a8fe198e8812da6342ced8
4
+ data.tar.gz: f2cfc51c7fc2aafc0372733f9ac2dbd53ca9d36f
5
5
  SHA512:
6
- metadata.gz: 46c60144d3805b20febd47115edfc9b50f8470250b7006706a0a91a7d03840093903bdf1ce1f588e787b607650ac1acc966b54d88b9b26c3abe1fa54944b3398
7
- data.tar.gz: cb2a019700b28ec5513e0de1f4d279838cdcd4c940fddf3a4c0e0320a090fe9eb9dd304e7c775a447328ca3e23aa1b6ec347a9fef25d8db566381aa48e8177d7
6
+ metadata.gz: a59386e6321d5dfc75498774ced2c066911b7b2ad34c5412effafcb167ade6f251460dbb3f5038659c4d9d0f7bb90e60ec0e65d3ac160d784d03668fd2e722a4
7
+ data.tar.gz: 24000f5eb37272682da2477cbda6eab34fe48bde926dbe1f1354dfca7500d78acbc3c4ae510416b6d8ee4d806f57dbc6348832d65b9cde750a16f80880d5d011
@@ -10,6 +10,8 @@ en:
10
10
  instructions: "instructions:"
11
11
  container:
12
12
  launched_command: "Launched command: '%{command}'"
13
+ system_shellout:
14
+ launched_command: "Launched system-shellout command: '%{command}'"
13
15
  process:
14
16
  artifact_copy: "copying artifact '%{name}'"
15
17
  artifact_building: "building artifact '%{name}'"
@@ -6,10 +6,20 @@ module Dapp
6
6
 
7
7
  def system_shellout(command, raise_error: false, **kwargs)
8
8
  system_shellout_extra(volume: (git_path ? File.dirname(git_path) : path)) do
9
- if raise_error
10
- shellout! _to_system_shellout_command(command), **kwargs
11
- else
12
- shellout _to_system_shellout_command(command), **kwargs
9
+ begin
10
+ if raise_error
11
+ shellout! _to_system_shellout_command(command), **kwargs
12
+ else
13
+ shellout _to_system_shellout_command(command), **kwargs
14
+ end
15
+ rescue Error::Shellout
16
+ log_warning(
17
+ desc: { code: :launched_command,
18
+ data: { command: _to_system_shellout_command(command) },
19
+ context: :system_shellout },
20
+ quiet: !log_verbose?
21
+ )
22
+ raise
13
23
  end
14
24
  end
15
25
  end
@@ -1,5 +1,5 @@
1
1
  # Version
2
2
  module Dapp
3
- VERSION = '0.7.13'.freeze
3
+ VERSION = '0.7.14'.freeze
4
4
  BUILD_CACHE_VERSION = 6
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.13
4
+ version: 0.7.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Stolyarov