forked from github/server
fix orders script running from install directory
This commit is contained in:
parent
5939b56b32
commit
1c6f598fdd
|
@ -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