Compare commits
No commits in common. "0c9caab797ba49c85858fbcc80e3290936ea7d9c" and "7566bf86125fe737bc6df9692a8bcda44d983d14" have entirely different histories.
0c9caab797
...
7566bf8612
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1 +0,0 @@
|
|||||||
* text eol=lf
|
|
14
cli.py
14
cli.py
@ -37,21 +37,9 @@ def help(_args):
|
|||||||
for command in commandList.keys():
|
for command in commandList.keys():
|
||||||
print("\t", command)
|
print("\t", command)
|
||||||
|
|
||||||
def issueUpdate(args):
|
|
||||||
parser = argparse.ArgumentParser(description='Update issues', prog="cli.py issueUpdate")
|
|
||||||
parser.add_argument('-v', '--verbose', action='store_true', help='verbose mode')
|
|
||||||
parser.add_argument('--outDir', default="build", help='output directory')
|
|
||||||
args = parser.parse_args(args)
|
|
||||||
if args.verbose:
|
|
||||||
print("update issues")
|
|
||||||
issuePath = os.path.join(args.outDir,"issues.json")
|
|
||||||
p = subprocess.run(["deno", "run", "-A","tools/getIssue.ts", "--path",issuePath])
|
|
||||||
p.check_returncode()
|
|
||||||
|
|
||||||
commandList = {
|
commandList = {
|
||||||
'build': build,
|
'build': build,
|
||||||
'help': help,
|
'help': help
|
||||||
'issueUpdate': issueUpdate
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
해당되지 않음.
|
해당되지 않음.
|
||||||
## 3.2. 기능 요구사항(Functional requirements)
|
## 3.2. 기능 요구사항(Functional requirements)
|
||||||
|
|
||||||
<%~ it.issues.map(i => `### (#${i.number}) ${i.title}\n${i.body.replaceAll("\r\n","\n")}`).join("\n\n") %>
|
<%~ it.issues.map(i => `### (#${i.number}) ${i.title}\n${i.body}`).join("\n\n") %>
|
||||||
|
|
||||||
## 3.3. 성능 요구사항(Performance requirements)
|
## 3.3. 성능 요구사항(Performance requirements)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user