File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export const exec: cliCommand = (argv) => {
3838 const title = args [ "--title" ] || "" ;
3939 const emoji = args [ "--emoji" ] || pickRandomEmoji ( ) ;
4040 const type = args [ "--type" ] === "idea" ? "idea" : "tech" ;
41- const published = args [ "--published" ] === "false " ? "false " : "true " ; // デフォルトはtrue
41+ const published = args [ "--published" ] === "true " ? "true " : "false " ; // デフォルトはfalse
4242
4343 const fileBody =
4444 [
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export const exec: cliCommand = (argv) => {
5252 const title = args [ "--title" ] || "" ;
5353 const summary = args [ "--summary" ] || "" ;
5454 const published = args [ "--published" ] === "true" ? "true" : "false" ; // デフォルトはfalse
55- const price = args [ "--price" ] || 0 ; // デフォルトはfalse
55+ const price = args [ "--price" ] || 0 ; // デフォルトは¥0
5656
5757 const configYamlBody =
5858 [
You can’t perform that action at this time.
0 commit comments