We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 380ce6a commit d442ffaCopy full SHA for d442ffa
src/commands/help.ts
@@ -14,7 +14,7 @@ COMMAND:
14
15
OPTIONS:
16
--credential <credential_dir>
17
- qiita-cliの認証情報を配置するディレクトリを指定
+ Qiita CLIの認証情報を配置するディレクトリを指定
18
19
--root <root_dir>
20
記事ファイルをダウンロードするディレクトリを指定
src/lib/config.ts
@@ -95,7 +95,7 @@ class Config {
95
includePrivate: false,
96
} as UserConfig;
97
98
- if (fsSync.existsSync(this.userConfigFilePath as string)) {
+ if (fsSync.existsSync(this.getUserConfigFilePath())) {
99
const userConfigFileData = await fs.readFile(
100
this.userConfigFilePath as string
101
);
0 commit comments