Skip to content

Commit 10aeb3e

Browse files
committed
changed submsg() printing from [+] to ==>, as the later is common in Arch
Linux scripts
1 parent b0515ec commit 10aeb3e

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

init_image.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,20 @@ OPTIONS:
3838
EOF
3939
exit 4
4040
}
41-
message(){
41+
message() {
4242
echo "init_image.sh: ${@}"
4343
}
4444

45-
submsg(){
46-
echo "[+] ${@}"
45+
submsg() {
46+
echo "==> ${@}"
4747
}
4848

49-
exit_with_error(){
49+
exit_with_error() {
5050
echo 1>&2 "init_image.sh: ERROR: ${2}"
5151
exit ${1}
5252
}
5353

54-
warn(){
54+
warn() {
5555
echo 1>&2 "init_image.sh: WARN: ${@}"
5656
}
5757

shrinkwrap_image.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@ WARNING: This tool makes the assumption:
4646
EOF
4747
exit 4
4848
}
49-
message(){
49+
message() {
5050
echo "shrinkwrap_image.sh: ${@}"
5151
}
5252

53-
submsg(){
54-
echo "[+] ${@}"
53+
submsg() {
54+
echo "==> ${@}"
5555
}
5656

57-
warn(){
57+
warn() {
5858
echo 1>&2 "shrinkwrap_image.sh: WARN: ${@}"
5959
}
6060

61-
exit_with_error(){
61+
exit_with_error() {
6262
echo 1>&2 "shrinkwrap_image.sh: ERROR: ${2}"
6363
exit ${1}
6464
}

0 commit comments

Comments
 (0)