We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 371f9fa + 5fedf25 commit 83365ccCopy full SHA for 83365cc
1 file changed
src/extension.ts
@@ -26,8 +26,8 @@ export function activate(context: vscode.ExtensionContext) {
26
// check if gtm is installed + avaliable
27
run_cmd('gtm', ['-v'])
28
.then((res: Result) => {
29
- if(res.output < 'v1.0-beta.8'){
30
- vscode.window.showWarningMessage('Installed gtm version is below v1.0-beta.8. Please update your gtm installation.');
+ if(res.output < 'v1.0.0'){
+ vscode.window.showWarningMessage('Installed gtm version is below v1.0.0. Please update your gtm installation.');
31
}
32
}, (res: Result) => {
33
if (res.code < 0) {
0 commit comments