Skip to content

Commit

Permalink
fix(cli): use relative path when output is not provided
Browse files Browse the repository at this point in the history
Changed the override output folder to be a relative path to the execution path

fix #20
  • Loading branch information
onderceylan committed Aug 22, 2019
1 parent f022121 commit ec991ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ options = normalizeOnlyFlagPairs('splashOnly', 'iconOnly', options);
options = normalizeOnlyFlagPairs('landscapeOnly', 'portraitOnly', options);

if (!output) {
output = process.cwd();
output = '.';
}

(async () => {
Expand Down

0 comments on commit ec991ec

Please sign in to comment.