Browse Source

Update npm_setup.sh

tteckster 3 năm trước cách đây
mục cha
commit
d2f641558b
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      npm_setup.sh

+ 2 - 2
npm_setup.sh

@@ -24,14 +24,14 @@ function msg() {
 }
 
 # Prepare container OS
-msg "Setting up container OS..."
+echo -e "${CHECKMARK} \e[1;92m Setting up Container OS... \e[0m"
 sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
 locale-gen >/dev/null
 apt-get -y purge openssh-{client,server} >/dev/null
 apt-get autoremove >/dev/null
 
 # Update container OS
-msg "Updating container OS..."
+echo -e "${CHECKMARK} \e[1;92m Updating Container OS... \e[0m"
 apt update &>/dev/null
 apt-get -qqy upgrade &>/dev/null