Skip to content
Snippets Groups Projects
Commit eebc555f authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[bin][makeinstall] fix filename arg parse

parent c18f6e21
No related branches found
No related tags found
1 merge request!2867Fix/make install script
......@@ -109,7 +109,9 @@ def runMakeInstallScript():
modName = getModuleInfo(modPath, "Module")
printProgressInfo([f"Creating install script for module '{modName}' in folder '{modPath}'"])
scriptName = cmdArgs.get("filename", getDefaultScriptName(modName, cmdArgs["language"]))
scriptName = cmdArgs.get("filename")
if not scriptName:
scriptName = getDefaultScriptName(modName, cmdArgs["language"])
makeInstallScript(
modPath=modPath,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment