Commit b64df60d authored by Benjamin Elder's avatar Benjamin Elder

make build/build-image/rsyncd.sh pass shellcheck

parent 06e1af74
...@@ -45,7 +45,7 @@ mkdir -p "${CONFDIR}" ...@@ -45,7 +45,7 @@ mkdir -p "${CONFDIR}"
if [[ -f "${PIDFILE}" ]]; then if [[ -f "${PIDFILE}" ]]; then
PID=$(cat "${PIDFILE}") PID=$(cat "${PIDFILE}")
echo "Cleaning up old PID file: ${PIDFILE}" echo "Cleaning up old PID file: ${PIDFILE}"
kill $PID &> /dev/null || true kill "${PID}" &> /dev/null || true
rm "${PIDFILE}" rm "${PIDFILE}"
fi fi
......
./build/build-image/rsyncd.sh
./build/common.sh ./build/common.sh
./build/copy-output.sh ./build/copy-output.sh
./build/lib/release.sh ./build/lib/release.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment