Skip to content

Commit

Permalink
Reject blanks in commander args.
Browse files Browse the repository at this point in the history
  • Loading branch information
rejeep committed Sep 5, 2013
1 parent 548bff0 commit 4703be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ert-runner.el
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
(setq debug-on-error t)
(setq debug-on-entry t))

(setq commander-args (s-split " " (getenv "ERT_RUNNER_ARGS")))
(setq commander-args (-reject 's-blank? (s-split " " (getenv "ERT_RUNNER_ARGS"))))

(commander
(name "ert-runner")
Expand Down

0 comments on commit 4703be1

Please sign in to comment.