pixab 1.1.2 → 1.1.3
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/lib/ComponentSynchronizer.rb +1 -0
- data/lib/pixab/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: 620f8ce01d8a6d133e14e0bf9fd5b38ae12d59690f8755c311dbad00162e3378
|
4
|
+
data.tar.gz: 5949bd4e8a44174d1a6702698bd47aabb5b499940ef8bb7785674dcd3e5d4ddc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f64497e1c775ea0f8fe164f66d15b463c967e6ddcb568e8447541d366828e7e84c50e99ec22836afa26968cdf6172cb31f699ba53eea8e24a5623ebcc5ea0b6
|
7
|
+
data.tar.gz: fc3c3013e9e97e39fa622fcfff40125df59c2aa5735455aa50d6fe6df82ea1bbcd92d5929975f08b967238159322828b5a17e841320f9422e82896a42359a61f
|
@@ -105,6 +105,7 @@ module Pixab
|
|
105
105
|
repo_name = repo["name"]
|
106
106
|
repo_target_branch = repo["target_branch"]
|
107
107
|
FileUtils.cd("#{repo_manager.root_path}/#{repo_name}")
|
108
|
+
`git fetch origin #{repo_target_branch}`
|
108
109
|
commit_id = `git log origin/#{repo_target_branch} -n 1 --pretty=format:"%H"`
|
109
110
|
if !commit_id.nil?
|
110
111
|
repo_commite_id[repo_name] = commit_id
|
data/lib/pixab/version.rb
CHANGED