From 71951be1d7a08e4f77ac6a97e4a1c59b75d9d2c4 Mon Sep 17 00:00:00 2001 From: Oleksii Kurinnyi Date: Thu, 26 Sep 2019 15:57:13 +0300 Subject: [PATCH] add 'github' project type to factory-plugin (#450) Signed-off-by: Oleksii Kurinnyi --- plugins/factory-plugin/src/theia-commands.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/factory-plugin/src/theia-commands.ts b/plugins/factory-plugin/src/theia-commands.ts index d4109bcb4..9c3387fe3 100644 --- a/plugins/factory-plugin/src/theia-commands.ts +++ b/plugins/factory-plugin/src/theia-commands.ts @@ -46,6 +46,7 @@ export function buildProjectImportCommand( switch (project.source.type) { case 'git': + case 'github': return new TheiaGitCloneCommand(project, projectsRoot); case 'zip': return new TheiaImportZipCommand(project, projectsRoot);