This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cuiyiming-lua-sapp/adapter/http_adapter/script/deploy.sh
2019-05-21 17:08:44 +08:00

11 lines
653 B
Bash

SAPP_RUN=$1
if [ "${SAPP_RUN}" = "" ]; then
echo "USAGE: sh build_rpm.sh sapp_path" && exit 0
fi
mkdir -p $SAPP_RUN/plug/business/http_adapter
/bin/cp -f adapter/libhttp_adapter.so $SAPP_RUN/plug/business/http_adapter/libhttp_adapter.so
/bin/cp -f ../adapter/http_adapter/conf/http_adapter.inf $SAPP_RUN/plug/business/http_adapter/http_adapter.inf
/bin/cp -rf ../adapter/http_adapter/lua $SAPP_RUN/plug
mkdir -p $SAPP_RUN/log/lua_sapp/http_adapter/lua/
cat $SAPP_RUN/plug/business/conflist_business.inf | grep "http_adapter.inf" >/dev/null 2>&1 && exit
echo ./plug/business/http_adapter/http_adapter.inf >> $SAPP_RUN/plug/business/conflist_business.inf