git-to-k8s
Advanced tools
Comparing version 0.2.5 to 0.2.6
@@ -143,3 +143,3 @@ 'use strict' | ||
if (parser.get('help')) { | ||
logger.info('Usage: git-to-k8s [--dry] [-b branch] [--purge] repo_url') | ||
logger.info('Usage: git-to-k8s repo_url [--dry] [-b branch] [--purge]') | ||
logger.exit_success() | ||
@@ -254,6 +254,6 @@ } | ||
cmds: [ | ||
`rm -rf ${pkg.tmp_dir}` | ||
`rm -rf ${path.join(pkg.tmp_dir, this.repo_name)}` | ||
], | ||
dry_cmds: [ | ||
`rm -rf ${pkg.tmp_dir}` | ||
`rm -rf ${path.join(pkg.tmp_dir, this.repo_name)}` | ||
] | ||
@@ -260,0 +260,0 @@ })) |
{ | ||
"name": "git-to-k8s", | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"description": "Small tool to automate the git to url flow on k8s", | ||
@@ -58,8 +58,10 @@ "main": "index.js", | ||
], | ||
"charts": [{ | ||
"values": "values.yaml", | ||
"release": "test-git-to-k8s", | ||
"path": "sample/charts/test" | ||
}] | ||
"charts": [ | ||
{ | ||
"values": "values.yaml", | ||
"release": "test-git-to-k8s", | ||
"path": "sample/charts/test" | ||
} | ||
] | ||
} | ||
} |
@@ -61,3 +61,3 @@ # git-to-k8s | ||
$ git-to-k8s --help | ||
Usage: git-to-k8s [--dry] [-b branch] [--purge] repo_url | ||
Usage: git-to-k8s repo_url [--dry] [-b branch] [--purge] | ||
@@ -64,0 +64,0 @@ $ git-to-k8s https://github.com/devfans/git-to-k8s |
88929