This commit is contained in:
r4 2022-04-19 19:37:38 +02:00
parent 9ecb2f5579
commit 6f962c0d88
1 changed files with 2 additions and 2 deletions

View File

@ -121,9 +121,9 @@ static void command_loop() {
root.close();
} else if (n_args == 3 && fstreq(args[1], F("remove"))) {
if (SD.remove(args[2]))
printf(F("Deleted '%s'."), args[2]);
printf(F("Deleted '%s'.\n"), args[2]);
else
printf(F("Error removing '%s'."), args[2]);
printf(F("Error removing '%s'.\n"), args[2]);
} else if (n_args == 2 && fstreq(args[1], F("remove_all"))) {
File root = SD.open("/");
if (root) {