@@ -8,7 +8,7 @@ import tutorialConfig from '../actions/tutorialConfig'
88import { COMMANDS } from '../editor/commands'
99import logger from '../services/logger'
1010import Context from './context'
11- import { version as gitVersion , checkRemoteConnects } from '../services/git'
11+ import { version as gitVersion } from '../services/git'
1212import { openWorkspace , checkWorkspaceEmpty } from '../services/workspace'
1313
1414interface Channel {
@@ -86,12 +86,12 @@ class Channel implements Channel {
8686// setup tutorial config (save watcher, test runner, etc)
8787await this . context . setTutorial ( this . workspaceState , data )
8888
89- await tutorialConfig ( { config :data . config } , onError )
90-
9189try {
92- await checkRemoteConnects ( data . config . repo )
90+ // TODO: better handle errors
91+ await tutorialConfig ( { config :data . config } , onError )
9392} catch ( error ) {
94- this . send ( { type :'GIT_REMOTE_FAILED' , payload :{ message :error . message } } )
93+ // TODO send failure messages back to client
94+ // to show errors in the webview
9595}
9696
9797// report back to the webview that setup is complete