Skip to content

Commit ee1d9e7

Browse files
.
1 parent 205d840 commit ee1d9e7

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

core/default/logs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env bash
12
source plugins/functions
23

34
do_chroot_ae "out/arm64" cat /debootstrap/debootstrap.log

plugins/colors

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
RST="\e[0m"
4-
RED="\e[1;31m" # *This is bold
4+
RED="\e[1;31m" # *This is bold
55
GREEN="\e[1;32m"
66
BLUE="\e[34m"
7-
DC=${BLUE}
7+
DC=${BLUE}

plugins/functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ do_debootstrap() {
145145
suite="hirsute" #* need to add more logics for more suits
146146
shout "debootstraping $suite to $target_dir"
147147

148-
if [ -n $OVERRIDER_MIRROR ]; then
148+
if [[ -n $OVERRIDER_MIRROR ]]; then
149149
MIRROR="$OVERRIDER_MIRROR"
150150
else
151151
MIRROR="http://ports.ubuntu.com/ubuntu-ports/"

plugins/gz-packer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ tar \
1313
-cpf \
1414
- "${target_source}" -P \
1515
| pv -s $(($(du -sk "${target_source}" | awk '{print $1}') * 1024)) |\
16-
gzip > "${target}".tar.gz
16+
gzip > "${target}".tar.gz

plugins/j-packer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ tar \
1212
-cpf \
1313
- "${target_source}" -P \
1414
| pv -s $(($(du -sk "${target_source}" | awk '{print $1}') * 1024)) |\
15-
bzip2 > "${target}".tar.xz
15+
bzip2 > "${target}".tar.xz

plugins/lz-packer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ tar \
1313
-cpf \
1414
- "${target_source}" -P \
1515
| pv -s $(($(du -sk "${target_source}" | awk '{print $1}') * 1024)) |\
16-
lz4 -9 > "${target}".tar.gz # use high compression
16+
lz4 -9 > "${target}".tar.gz # use high compression

0 commit comments

Comments
 (0)