Skip to content

Commit 271bde9

Browse files
Merge pull request #898 from appwrite/fix-cli-init-project
Fix error when no project set
2 parents 961d55c + 4f302a0 commit 271bde9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/sdks.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const sdkForProject = async () => {
3030
let selfSigned = globalConfig.getSelfSigned()
3131

3232
if (!project) {
33-
throw new Error("Project is not set. Please run `{{ language.params.executableName }} init` to initialize the current directory with an {{ spec.title|caseUcfirst }} project.");
33+
throw new Error("Project is not set. Please run `{{ language.params.executableName }} init project` to initialize the current directory with an {{ spec.title|caseUcfirst }} project.");
3434
}
3535

3636
client

0 commit comments

Comments
 (0)