We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3da43c commit a7a0aefCopy full SHA for a7a0aef
src/customize
@@ -44,7 +44,9 @@ fi
44
function copy_files() {
45
#move filesystem files
46
if [ -d "$1" ]; then
47
+ echo "::group::Copying $1"
48
cp -vr --preserve=mode,timestamps "$1" .
49
+ echo "::endgroup::"
50
fi
51
}
52
@@ -69,7 +71,7 @@ function execute_chroot_script() {
69
71
70
72
73
- echo "Running $1 in chroot..."
74
+ echo "::group::Running $1 in chroot..."
75
cp $1 chroot_script
76
chmod 755 chroot_script
77
cp "$DIR/common.sh" common.sh
@@ -87,6 +89,8 @@ function execute_chroot_script() {
87
89
echo "Building on ARM device a armv7l/aarch64/arm64 system, not using qemu"
88
90
chroot . /bin/bash /chroot_script
91
92
+
93
94
95
#cleanup
96
rm chroot_script
0 commit comments