mirror of
https://github.com/lxsang/ant-http
synced 2024-11-16 00:28:21 +01:00
9 lines
254 B
Bash
Executable File
9 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
UNAME=`uname -s`
|
|
|
|
if [ "$UNAME" == "Darwin" ]; then
|
|
DYLD_LIBRARY_PATH=$(dirname "$0")/plugins/ $(dirname "$0")/httpd $(dirname "$0")/config.ini
|
|
else
|
|
LD_LIBRARY_PATH=$(dirname "$0")/plugins/ $(dirname "$0")/httpd $(dirname "$0")/config.ini
|
|
fi
|