Fixed linux mac check bug
parent
291bfa2e32
commit
8092da597b
|
@ -1052,7 +1052,7 @@ CUSTOM_DOC("Deletes the file of the current buffer if 4coder has the appropriate
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
append(&cmd, "del ");
|
append(&cmd, "del ");
|
||||||
#elif defined(__linux__) && defined(__APPLE__) && defined(__MACH__)
|
#elif defined(__linux__) || (defined(__APPLE__) && defined(__MACH__))
|
||||||
append(&cmd, "rm ");
|
append(&cmd, "rm ");
|
||||||
#else
|
#else
|
||||||
# error no delete file command for this platform
|
# error no delete file command for this platform
|
||||||
|
|
Loading…
Reference in New Issue