File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ class Channel implements Channel {
113113 const data : TT . Tutorial = action . payload . tutorial
114114
115115 // validate extension version
116- const expectedAppVersion = data . config ?. appVersions ?. coderoadVSCode
116+ const expectedAppVersion = data . config ?. appVersions ?. vscode
117117 if ( expectedAppVersion ) {
118118 const extension = vscode . extensions . getExtension ( 'coderoad.coderoad' )
119119 if ( extension ) {
@@ -122,7 +122,7 @@ class Channel implements Channel {
122122 if ( ! satisfied ) {
123123 const error : E . ErrorMessage = {
124124 type : 'UnmetExtensionVersion' ,
125- message : `Expected CodeRoad v${ expectedAppVersion } , but found ${ currentAppVersion } ` ,
125+ message : `Expected CodeRoad v${ expectedAppVersion } , but found v ${ currentAppVersion } ` ,
126126 }
127127 this . send ( { type : 'TUTORIAL_CONFIGURE_FAIL' , payload : { error } } )
128128 return
Original file line number Diff line number Diff line change @@ -67,5 +67,5 @@ export interface TutorialDependency {
6767}
6868
6969export interface TutorialAppVersions {
70- coderoadVSCode : string
70+ vscode : string
7171}
You can’t perform that action at this time.
0 commit comments