archive : remove green color from success.

This commit is contained in:
Dmitry Voronin 2023-11-08 20:10:27 +03:00
parent aca05068dc
commit abcc77501f

View file

@ -232,7 +232,7 @@ archive_name()
fi fi
# rename. # rename.
mv -- "${target}" "${new_name}" && echo -e "${color_green}${status}${color_default}" || echo -e "${color_bred}${status}: error.${color_default}" mv -- "${target}" "${new_name}" && echo "${status}" || echo -e "${color_bred}${status}: error.${color_default}"
done done
} }