Skip to content

Commit

Permalink
use ./bin/zeus instead of zeus in command
Browse files Browse the repository at this point in the history
the path does not seam to be set from an environment variable in .bashrc
if you don't want to use bundler because it adds a few seconds, and since the default directory is set, this is a simple fix
  • Loading branch information
teaforthecat committed Dec 12, 2012
1 parent 8067a98 commit 20bbc8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rspec-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@
(defun rspec-runner ()
"Returns command line to run rspec"
(let ((bundle-command (if (rspec-bundle-p) "bundle exec " ""))
(zeus-command (if (rspec-zeus-p) "zeus " "")))
(zeus-command (if (rspec-zeus-p) "./bin/zeus " "")))
(concat bundle-command zeus-command (if rspec-use-rake-flag
(concat rspec-rake-command " spec")
rspec-spec-command))))
Expand Down

0 comments on commit 20bbc8f

Please sign in to comment.