forked from github/server
fix orders script running from install directory
This commit is contained in:
parent
6a6089b48c
commit
11b18b9b1d
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
SCRIPT=$(readlink -f $0)
|
||||
cd $(dirname $SCRIPT)
|
||||
python accept-orders.py "$@"
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
SCRIPT=$(readlink -f $0)
|
||||
cd $(dirname $SCRIPT)
|
||||
python process-orders.py "$@"
|
||||
|
||||
|
|
Loading…
Reference in New Issue