Skip to content

Commit 3fcf81d

Browse files
committed
Fix profileDir path
1 parent def32ac commit 3fcf81d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class Options extends commonOptionsLibPath.OptionsBase {
2525
keyStoreAlias: { type: OptionType.String },
2626
keyStoreAliasPassword: { type: OptionType.String }
2727
},
28-
path.join($hostInfo.isWindows ? process.env.LocalAppData : path.join(osenv.home(), ".local/share", "Telerik", "BlackDragon", ".nativescript-cli")),
28+
path.join($hostInfo.isWindows ? path.join(process.env.LocalAppData, ".nativescript-cli") : path.join(osenv.home(), ".local/share", ".nativescript-cli")),
2929
$errors, $staticConfig);
3030
}
3131
}

0 commit comments

Comments
 (0)