Remove extra RESET/NOCOLOR

This commit is contained in:
Alex D. 2018-11-18 13:54:19 +01:00
parent 2a0852829d
commit f018feb99b
1 changed files with 5 additions and 5 deletions

10
manager
View File

@ -3,13 +3,13 @@
## Functions
function maitenance {
output "info" "Removing stopped containers...${NC}"
output "info" "Removing stopped containers..."
dp "container"
output "info" "Pruning unused images...${NC}"
output "info" "Pruning unused images..."
dp "image"
output "info" "Pruning unused volumes...${NC}"
output "info" "Pruning unused volumes..."
dp "volume"
output "info" "Clearing logs...${NC}"
output "info" "Clearing logs..."
rm -v /var/log/nginx/*.*
nginx -s reload
}
@ -197,7 +197,7 @@ function update () {
function selfupdate {
cd ~/bin || exit
output "info" "Self-updating:${NC}"
output "info" "Self-updating:"
git pull https://github.com/RXCommunity/Manager master || \
output "err" "Could not pull latest version, did you clone the repository?"
}