manage.sh: add warnings for nonexistent sources

This commit is contained in:
joachimschmidt557 2024-01-20 23:38:37 +01:00
parent 71d2ac135a
commit 2ed0a412a8
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

View file

@ -69,6 +69,9 @@ status_target_source() {
status_buffer="${status_buffer}${newline} ${dim}$2${reset}"
fi
if [ ! -e $2 ] ; then
status_buffer="${status_buffer} ${bold}${yellow}!${reset}"
fi
}
status_finished() {