Skip to content

Commit cd4b979

Browse files
committed
Fix Linux VSCode non Snap package bug
Also update issue template
1 parent e7001cb commit cd4b979

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/issue_template.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
If you are reporting an issue/bug please fill in your VSCode version, CodeSync version, and if you are on version 2.4.0 and above the CodeSync log from the CodeSync output channel. Thanks!
1+
If you are reporting an issue/bug please fill in your VSCode version, OS information, CodeSync version, and if you are on version 2.4.0 and above the CodeSync log from the CodeSync output channel. Thanks!
22

33
If you are requesting a feature feel free to clear this template.
44

55
VSCode version:
66

7+
OS information:
8+
79
CodeSync version:
810

911
CodeSync log:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "code-sync",
33
"displayName": "CodeSync",
44
"description": "Sync VSCode extensions using your favorite file synchronization service (OneDrive, Dropbox, Google Drive, etc.)",
5-
"version": "2.7.1",
5+
"version": "2.7.2",
66
"publisher": "golf1052",
77
"keywords": [
88
"sync",

src/cs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const KEYBINDINGS = 'keybindings.json';
1818
export const SNIPPETS = 'snippets';
1919
export const LOCAL_SETTINGS = 'local-settings.json';
2020

21-
export const currentVersion: string = '2.7.1';
21+
export const currentVersion: string = '2.7.2';
2222
export let vsCodeExtensionDir: string = helpers.getExtensionDir();
2323
export let codeSyncExtensionDir: string = path.join(vsCodeExtensionDir, 'golf1052.code-sync-' + currentVersion);
2424

src/helpers.ts

+5
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,11 @@ export function isCodeASnapPackage(settings: settings.Settings, log: boolean = f
195195
value: true,
196196
path: codePath
197197
};
198+
} else {
199+
return {
200+
value: false,
201+
path: null
202+
}
198203
}
199204
} else {
200205
return {

0 commit comments

Comments
 (0)