rbbt-util 5.31.3 → 5.31.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/share/install/software/lib/install_helpers +6 -0
- 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: 346571583494c278a4499a2ad2bddc248af37176a7acb3a2457af05941b7a074
|
|
4
|
+
data.tar.gz: 32539316c53ef634de003ea246e8a649de978f66ea48e9666218eac51f85f4b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4636806a9917c98906f492afd57c2b776b9269b97c07ec205d1f6248a1f91ef3a280003e234f4052288b4d959bc16c9121ac8d12effb81973585b2cbbf499301
|
|
7
|
+
data.tar.gz: 3ef61d067b36a953fd284954db046607de7050a933461a0ebc8b7096abe9d943527165337cf375b43e5f97d20b2ee27722c603684a4e1e63fb20bec56d57dc13
|
|
@@ -147,6 +147,8 @@ get_git(){
|
|
|
147
147
|
git pull origin master
|
|
148
148
|
git rebase master
|
|
149
149
|
git stash apply
|
|
150
|
+
git submodule init
|
|
151
|
+
git submodule update
|
|
150
152
|
fi
|
|
151
153
|
else
|
|
152
154
|
if [ $version == 'none' ];then
|
|
@@ -154,6 +156,10 @@ get_git(){
|
|
|
154
156
|
else
|
|
155
157
|
git clone --recursive "$url" "$name" -b $version
|
|
156
158
|
fi
|
|
159
|
+
|
|
160
|
+
cd "$name"
|
|
161
|
+
git submodule init
|
|
162
|
+
git submodule update
|
|
157
163
|
fi
|
|
158
164
|
|
|
159
165
|
clean_build
|