Compare commits

...

2 Commits

Author SHA1 Message Date
94e7f502b3 2.2.1 2016-06-25 19:19:43 +02:00
a699d29885 fix function call for ssh 2016-06-25 19:18:42 +02:00
3 changed files with 7 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "2.2.0",
"version": "2.2.1",
"description": "",
"main": "dist/index.js",
"bin": {

View File

@@ -61,7 +61,9 @@ export let prepare = function(serviceArg:string){
case "docker":
return docker();
case "docker-gitlab":
return dockerGitlab()
return dockerGitlab();
case "ssh":
return ssh();
default:
break;
}