commit a472587a926117b9796cddb80af53a43d08e598a
parent 1dc7e66f86e8d745f8b72a4d1d78fc92a4cdd7c1
Author: Pascal Maheux <pmaheux@audiokinetic.com>
Date: Mon, 17 Jul 2023 10:14:38 -0400
SP-3080: add missing argument to RecursiveCreateDirectory
Change-Id: Iab30dd08562b49cfe65923a11c3889cfc4814669
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/OpenAssociatedReaperProject/OpenAssociatedReaperProject.lua b/OpenAssociatedReaperProject/OpenAssociatedReaperProject.lua
@@ -1,6 +1,6 @@
@description Open Associated REAPER Project
@author Audiokinetic
-@version 1.0.0-rc.1
+@version 1.0.0-rc.2
@metapackage
@provides
[nomain] Utilities.lua https://raw.githubusercontent.com/audiokinetic/Reaper-Tools/$commit/OpenAssociatedReaperProject/Utilities.lua
diff --git a/OpenAssociatedReaperProject/OpenAssociatedReaperProject_Install Wwise Command.lua b/OpenAssociatedReaperProject/OpenAssociatedReaperProject_Install Wwise Command.lua
@@ -99,7 +99,7 @@ if utils.WindowsOS() then
openInReaperPath = openInReaperPath:gsub("/", "\\")
end
-reaper.RecursiveCreateDirectory(openInReaperPath)
+reaper.RecursiveCreateDirectory(openInReaperPath, 0)
openInReaperPath = openInReaperPath.."OpenAssociatedReaperProject.json"
file, err = io.open(openInReaperPath, "w")