Skip to content

Commit

Permalink
修改一些BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
sugood committed Nov 13, 2020
1 parent 5549cd7 commit b2fbf43
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
58 changes: 29 additions & 29 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/commons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ end
--复制文件
function copyFile(source,destination)
print(destination)
sourcefile = io.open(source, "r")
destinationfile = io.open(destination, "w")
local sourcefile = io.open(source, "r")
local destinationfile = io.open(destination, "w")
destinationfile:write(sourcefile:read("*all"))
sourcefile:close()
destinationfile:close()
Expand Down

0 comments on commit b2fbf43

Please sign in to comment.