Skip to content

Commit d442ffa

Browse files
committed
fixup! fixup! Add config file system to change options
1 parent 380ce6a commit d442ffa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/help.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COMMAND:
1414
1515
OPTIONS:
1616
--credential <credential_dir>
17-
qiita-cliの認証情報を配置するディレクトリを指定
17+
Qiita CLIの認証情報を配置するディレクトリを指定
1818
1919
--root <root_dir>
2020
記事ファイルをダウンロードするディレクトリを指定

src/lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Config {
9595
includePrivate: false,
9696
} as UserConfig;
9797

98-
if (fsSync.existsSync(this.userConfigFilePath as string)) {
98+
if (fsSync.existsSync(this.getUserConfigFilePath())) {
9999
const userConfigFileData = await fs.readFile(
100100
this.userConfigFilePath as string
101101
);

0 commit comments

Comments
 (0)