diff options
author | Caleb Land <caleb@land.fm> | 2014-03-31 16:36:27 -0400 |
---|---|---|
committer | Caleb Land <caleb@land.fm> | 2014-03-31 16:36:27 -0400 |
commit | 497f0a1f0b5c37eb3f376da36f88ac6fe58e069b (patch) | |
tree | 13803727e8aa5fbdbcaef2ea95b434ed66a6d385 | |
parent | 3de69c1564c349882b7fc45358b1597309a5da24 (diff) | |
parent | 8cc8d3413495418a1c3a0ac3f8ae8c6283be2035 (diff) | |
download | freebsd-puma-497f0a1f0b5c37eb3f376da36f88ac6fe58e069b.tar.gz freebsd-puma-497f0a1f0b5c37eb3f376da36f88ac6fe58e069b.tar.bz2 freebsd-puma-497f0a1f0b5c37eb3f376da36f88ac6fe58e069b.zip |
Merge pull request #1 from dgeo/master
To get this included in rubygem-unicorn port
-rwxr-xr-x | unicorn | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ unicorn_start_command() fi # ensure that the command exists and is executable - if [ ! -x ${_chroot}${_chroot:+"/"}${command} ]; then + if [ ! -x "${_chroot}${_chroot:+/}${command}" ]; then warn "run_rc_command: cannot run $command" return 1 fi |