We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c2305 commit bd746f9Copy full SHA for bd746f9
1 file changed
src/extension.ts
@@ -19,9 +19,8 @@ export let storagePath = '';
19
export async function activate(context: ExtensionContext) {
20
const game = workspace.getConfiguration('cfxlua').get('game', 'GTAV');
21
const storageUri = context.globalStorageUri;
22
- const targetUri = Uri.joinPath(storageUri, 'cfxlua');
23
const platform = os.platform();
24
- storagePath = targetUri.toString();
+ storagePath = storageUri.toString();
25
26
if (platform === 'win32') {
27
storagePath = path.join(
0 commit comments