From 6bd17831f2f68610a229f8802e4cd7d3060c7ee8 Mon Sep 17 00:00:00 2001 From: ruki Date: Wed, 8 Dec 2021 23:27:16 +0800 Subject: remove debug lines --- xmake/core/base/os.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua index 812451afd..a4fdb570e 100644 --- a/xmake/core/base/os.lua +++ b/xmake/core/base/os.lua @@ -143,21 +143,18 @@ end -- remove single file or directory function os._rm(filedir) - print("rm", filedir) -- check assert(filedir) -- is file or link? if os.isfile(filedir) or os.islink(filedir) then - print("rmfile") -- remove file if not os.rmfile(filedir) then return false, string.format("cannot remove file %s %s", filedir, os.strerror()) end -- is directory? elseif os.isdir(filedir) then - print("rmdir") -- remove directory if not os.rmdir(filedir) then return false, string.format("cannot remove directory %s %s", filedir, os.strerror()) @@ -453,7 +450,6 @@ end -- remove files or directories function os.rm(filepath) - print("rmssss", filepath) -- check arguments if not filepath then -- cgit v1.3.1