Skip to content

Commit

Permalink
Merge pull request #60 from nlamirault/hotfix/expand-path-to-executab…
Browse files Browse the repository at this point in the history
…le-file

Expand path to PHPUnit execubatle file
  • Loading branch information
zonuexe authored Aug 12, 2018
2 parents 3710490 + 0f81c19 commit 8b9c47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpunit.el
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
((functionp executable) (funcall executable))
((and directory
(file-exists-p (concat directory "vendor/bin/phpunit")))
(concat directory "vendor/bin/phpunit"))
(expand-file-name (concat directory "vendor/bin/phpunit")))
((executable-find "phpunit") "phpunit")
(t (error "PHPUnit command/package is not installed")))))

Expand Down

0 comments on commit 8b9c47d

Please sign in to comment.