Working.
All checks were successful
/ deploy (push) Successful in 0s

This commit is contained in:
Lord_Devi 2024-07-09 04:39:44 -04:00
parent eb51659815
commit 16abdd2dc6

View file

@ -122,7 +122,7 @@ _move_old_init_to_backup() {
"${HOME}/.bashrc")
for file in "${_init_file[@]}" ; do
if [ -f "$file" ]; then
if [ -f "$file" ] && [ ! -L "$file" ]; then
_mordu "Found existing ${file}, moving to ${file}.bak."
mv "$file" "$file.bak"
fi