Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Expand path to PHPUnit execubatle file
This problem is made by #58.
That occurs because "~" is escaped before being passed to the shell.
  • Loading branch information
zonuexe committed Aug 12, 2018
commit 0f81c195fb13f3cc42efe5a455e91a6d1170453c
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