Skip to content

Commit d6d8046

Browse files
committed
Merge pull request livecode#3557 from livecodeali/bugfix-notes_builder_output
[[ Notes Builder ]] Throw when no output folder is specified
2 parents 50b8c38 + b0c3abb commit d6d8046

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

builder/release_notes_builder.livecodescript

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ local sVersion
44
local sOutputPath
55

66
private command Initialize pVersion, pOutputPath
7+
if pOutputPath is empty then
8+
throw "Release notes output path must be specified"
9+
exit Initialize
10+
end if
11+
712
start using stack (builderSystemFolder() & slash & "markdown_compiler.livecodescript")
813
set the defaultfolder to builderRepoFolder()
914
set the hideconsolewindows to true

0 commit comments

Comments
 (0)