mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2025-03-21 17:39:20 +00:00
Fix *nix mkdir
Also extracts the mkdir code into its own function, in case we need to modify it again
This commit is contained in:
parent
57871e0ef1
commit
68b3c68d92
|
@ -16,6 +16,16 @@ do
|
|||
end
|
||||
end
|
||||
|
||||
local function mkdir(path)
|
||||
local mkdir_str
|
||||
if package.config:sub(1,1) == '\\' then -- Windows
|
||||
mkdir_str = 'mkdir "%s"'
|
||||
else -- *nix
|
||||
mkdir_str = "mkdir -p '%s'"
|
||||
end
|
||||
os.execute(mkdir_str:format(path)) -- HERE BE DRAGONS!!!
|
||||
end
|
||||
|
||||
function C:new()
|
||||
self._isCaveStoryPlus = false
|
||||
self.itemDeck = Items()
|
||||
|
@ -90,8 +100,7 @@ function C:_writePlaintext(tscFiles)
|
|||
local sourcePath = lf.getSourceBaseDirectory()
|
||||
|
||||
-- Create /data/Plaintext if it doesn't already exist.
|
||||
local command = ('mkdir "%s"'):format(sourcePath .. '/data/Plaintext')
|
||||
os.execute(command) -- HERE BE DRAGONS!!!
|
||||
mkdir(sourcePath .. '/data/Plaintext')
|
||||
|
||||
-- Write modified files.
|
||||
for filename, tscFile in pairs(tscFiles) do
|
||||
|
@ -186,8 +195,7 @@ function C:_getWritePaths()
|
|||
and (self._writePath .. '/base/Stage')
|
||||
or (self._writePath .. '/Stage')
|
||||
-- Create /data(/base)/Stage if it doesn't already exist.
|
||||
local command = ('mkdir "%s"'):format(self._writePathStage)
|
||||
os.execute(command) -- HERE BE DRAGONS!!!
|
||||
mkdir(self._writePathStage)
|
||||
end
|
||||
return self._writePath, self._writePathStage
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue