Skip to content

Commit ac1c83b

Browse files
committed
rmdir should not rm -r
1 parent 9f60e0e commit ac1c83b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adbfs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ static int adb_rmdir(const char *path) {
861861
shell_escape_path(local_path_string);
862862

863863

864-
string command = "rm -r '";
864+
string command = "rmdir '";
865865
command.append(path_string);
866866
command.append("'");
867867
adb_shell(command);

0 commit comments

Comments
 (0)