We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9280060 commit 17608eaCopy full SHA for 17608ea
backend/python/common/libbackend.sh
@@ -148,13 +148,13 @@ function startBackend() {
148
ensureVenv
149
150
if [ ! -z ${BACKEND_FILE} ]; then
151
- python ${BACKEND_FILE} $@
+ exec python ${BACKEND_FILE} $@
152
elif [ -e "${MY_DIR}/server.py" ]; then
153
- python ${MY_DIR}/server.py $@
+ exec python ${MY_DIR}/server.py $@
154
elif [ -e "${MY_DIR}/backend.py" ]; then
155
- python ${MY_DIR}/backend.py $@
+ exec python ${MY_DIR}/backend.py $@
156
elif [ -e "${MY_DIR}/${BACKEND_NAME}.py" ]; then
157
- python ${MY_DIR}/${BACKEND_NAME}.py $@
+ exec python ${MY_DIR}/${BACKEND_NAME}.py $@
158
fi
159
}
160
@@ -210,4 +210,4 @@ function checkTargets() {
210
echo false
211
212
213
-init
+init
0 commit comments