mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Fix to calling the php binary
Summary: by default it was looking for php to be in /usr/bin/php on some systems this is incorrect. It should be using /usr/bin/env php for calling php with the correct path. Test Plan: patch and try to run. Reviewers: epriestley Reviewed By: epriestley CC: svemir, aran, epriestley Differential Revision: 1136
This commit is contained in:
parent
ec8dbfd05f
commit
31c3f2a03e
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/php
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue