Skip to content

Commit

Permalink
Merge pull request #4 from KanoComputing/type-fix
Browse files Browse the repository at this point in the history
Fix archive-type
  • Loading branch information
pazdera authored Aug 9, 2018
2 parents 160b5e2 + f4b52a3 commit 47542a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/kart
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function archive(argv) {

name = argv.name ? argv.name : name;
version = argv.buildVersion ? argv.buildVersion : version;
type = argv.type ? argv.type : 'tar.gz';
type = argv['archive-type'] ? argv['archive-type'] : 'tar.gz';

return kart.archive.store(
argv.buildDir,
Expand Down

0 comments on commit 47542a4

Please sign in to comment.