updated cli args and help screen

This commit is contained in:
2023-02-09 17:24:40 -06:00
parent 806a82baae
commit 7e67128abe
12 changed files with 435 additions and 206 deletions

View File

@@ -116,7 +116,7 @@ function getResult(error: BuildFailure | null, result: BuildResult | null) {
}
function clearFilenameComments(content: string): string {
let regexp = new RegExp(`//\\s*${AllPaths.base.script}/.*(?:\\n|$)`, 'g')
let regexp = new RegExp(`//\\s*${AllPaths.base.in}/.*(?:\\n|$)`, 'g')
return content.replace(regexp, '')
}