Skip to content

Commit

Permalink
Ignore empty config flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Helcaraxan committed Jul 3, 2019
1 parent 3486583 commit 402481e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func executeRunCommand(args *runArgs) error {
args.logger.WithError(err).Error("Failed to determine the current working directory")
return err
}
if !filepath.IsAbs(args.config) {
if args.config != "" && !filepath.IsAbs(args.config) {
args.config = filepath.Join(cwd, args.config)
}
if !filepath.IsAbs(args.projectPath) {
Expand Down

0 comments on commit 402481e

Please sign in to comment.