From cbd18f91d1b6ca6d090f2f78abc098db6f5cf432 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 29 Sep 2025 13:36:00 +0200 Subject: [PATCH] Remove extra newline and update apt commands Removed an unnecessary newline in ct/myip.sh for cleaner output. Updated apt-get to apt in install/myip-install.sh for consistency with modern usage. --- ct/myip.sh | 1 - install/myip-install.sh | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ct/myip.sh b/ct/myip.sh index 84a4e289..10c3de82 100644 --- a/ct/myip.sh +++ b/ct/myip.sh @@ -40,7 +40,6 @@ function update_script() { msg_info "Starting Services" systemctl start myip msg_ok "Started Services" - msg_ok "Updated Successfully" fi exit diff --git a/install/myip-install.sh b/install/myip-install.sh index 019e399c..725536d1 100644 --- a/install/myip-install.sh +++ b/install/myip-install.sh @@ -48,7 +48,7 @@ motd_ssh customize msg_info "Cleaning up" -$STD apt-get -y autoremove -$STD apt-get -y autoclean +$STD apt -y autoremove +$STD apt -y autoclean $STD apt -y clean msg_ok "Cleaned"