build-buddy 1.0.6 → 1.1.0
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/build-buddy +6 -0
- data/lib/build_buddy.rb +1 -1
- data/lib/build_buddy/config.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: 823ad09aee4fcf86c149aceb919c9fb1d09ebe91
|
|
4
|
+
data.tar.gz: 7ced4d2d510a047605e903b5e14f301b39c49609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8a2eeb4ced6a73650c53149671a2459b5ae43a4e928e03b5b48fbab5100a3902e7d948411178e0df4b6b2e7c50f1ba62e0fd783c7e3d0e212a894984b02a66c
|
|
7
|
+
data.tar.gz: f7e4e4823fbee1cc8f9ae7eeb1a694d588f43b16c531c79bded4e78d6f4dea8ab469cc763a7a3765179b00d091bc6119e89779f5e5a353ceba1dd50420999b9b
|
data/bin/build-buddy
CHANGED
|
@@ -21,6 +21,12 @@ class Tool
|
|
|
21
21
|
|
|
22
22
|
load config_file_name
|
|
23
23
|
|
|
24
|
+
config_path = File.dirname(config_file_name)
|
|
25
|
+
BuildBuddy::Config.pull_request_build_script = File.expand_path(BuildBuddy::Config.pull_request_build_script, config_path)
|
|
26
|
+
BuildBuddy::Config.master_build_script = File.expand_path(BuildBuddy::Config.master_build_script, config_path)
|
|
27
|
+
BuildBuddy::Config.release_build_script = File.expand_path(BuildBuddy::Config.release_build_script, config_path)
|
|
28
|
+
BuildBuddy::Config.build_log_dir = File.expand_path(BuildBuddy::Config.build_log_dir, config_path)
|
|
29
|
+
|
|
24
30
|
build_log_dir = BuildBuddy::Config.build_log_dir
|
|
25
31
|
|
|
26
32
|
unless Dir.exist?(build_log_dir)
|
data/lib/build_buddy.rb
CHANGED
data/lib/build_buddy/config.rb
CHANGED