Skip to content

Commit

Permalink
does not
Browse files Browse the repository at this point in the history
  • Loading branch information
furudean committed Jul 13, 2024
1 parent 01bd9c4 commit 2ba05f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export function activate(context: vscode.ExtensionContext) {
async validateInput(value) {
const parsed_path = resolve_path(value)
const exists = await path_exists(parsed_path)
if (!exists) return "Path doesn't exist"
if (!exists) return 'Path does not exist'

const is_sdk = await path_is_sdk(parsed_path)
if (!is_sdk) return "Path is not a Ren'Py SDK"
Expand Down

0 comments on commit 2ba05f3

Please sign in to comment.