Skip to content

Commit

Permalink
fix(#293): lines
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Jun 5, 2024
1 parent 459ba7f commit 06fae0c
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions src/eoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,16 @@ program.command('sodg')

program.command('phi')
.description('Generate PHI files from XMIR')
.option('--phi-input <dir>', 'Directory where XMIR files for translation to PHI are taken (relative to --target)', '2-optimize')
.option('--phi-output <dir>', 'Directory where translated PHI files are stored (relative to --target)', 'phi')
.option(
'--phi-input <dir>',
'Directory where XMIR files for translation to PHI are taken (relative to --target)',
'2-optimize'
)
.option(
'--phi-output <dir>',
'Directory where translated PHI files are stored (relative to --target)',
'phi'
)
.action((str, opts) => {
clear(str);
if (program.opts().alone == undefined) {
Expand All @@ -194,8 +202,16 @@ program.command('phi')

program.command('unphi')
.option('--tests', 'Add "+tests" meta to result XMIR files')
.option('--unphi-input <dir>', 'Directory where PHI files for translation to XMIR are taken (relative to --target)', 'phi')
.option('--unphi-output <dir>', 'Directory where translated XMIR files are stored (relative to --target)', 'unphi')
.option(
'--unphi-input <dir>',
'Directory where PHI files for translation to XMIR are taken (relative to --target)',
'phi'
)
.option(
'--unphi-output <dir>',
'Directory where translated XMIR files are stored (relative to --target)',
'unphi'
)
.description('Generate XMIR files from PHI files')
.action((str, opts) => {
clear(str);
Expand Down

0 comments on commit 06fae0c

Please sign in to comment.