orchestration 0.6.2 → 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/orchestration/make/orchestration.mk +1 -2
- data/lib/orchestration/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: ca5c9bd9b0a391d077e39e8447c38483f7149c3435b150289d2bebee4ca951b9
|
4
|
+
data.tar.gz: '08d6fdbd61e22b9ab3b5f3367250c7adfa0ad65dfecccc128a1075db8e6a478c'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f07f4b6ad5d5ce98cf65f94ccc9ae6ae280fab784a1760ede004a0cecdc4c90294e781d585868da9784603fca08f7e530b87ad94bf886e9c6f4c78e48264e7f3
|
7
|
+
data.tar.gz: 2cf4176c26c23d05733a926a8d22871a0e801a35d7e4b5643e92d7adfdb6a7627b23ee37dd97c01250937ebb31a7c9d638a5902377b91d512a48bcf90e5a0d90
|
data/README.md
CHANGED
@@ -437,12 +437,11 @@ endif
|
|
437
437
|
ifdef include
|
438
438
|
@$(call echo,Including files from: ${cyan}${include}${reset})
|
439
439
|
@(while read line; do \
|
440
|
-
_system "echo '${system_prefix}' $$1 }"; \
|
441
440
|
export line; \
|
442
441
|
include_dir="${build_dir}/$$(dirname "$${line}")/" && \
|
443
442
|
mkdir -p "$${include_dir}" && cp "$${line}" "$${include_dir}" \
|
444
443
|
&& (cd '${orchestration_dir}/.build/' && tar rf 'context.tar' "$${line}"); \
|
445
|
-
|
444
|
+
echo "${system_prefix}" "tar rf 'context.tar' '$${line}'"; \
|
446
445
|
done < '${include}') ${log} || ${exit_fail}
|
447
446
|
@$(call echo,Build context ${green}ready${reset} ${tick})
|
448
447
|
endif
|