1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-18 23:14:15 +00:00

35 lines
821 B
Bash
Executable File

#!/bin/bash
FORCE_OVERWRITE=false
for arg in "$@"; do
if [ "$arg" == "-y" ]; then
FORCE_OVERWRITE=true
break
fi
done
NGINX_VERSION="1.26.3"
ARCH="$(uname -m)"
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
OUTPUTBIN="${SCRIPT_DIR}/../nginx-bin"
NGINX_BINARY_URL="https://jirutka.github.io/nginx-binaries/nginx-${NGINX_VERSION}-${ARCH}-linux"
if [ -f "${OUTPUTBIN}" ]; then
if [ "$FORCE_OVERWRITE" = true ]; then
echo "'-y' flag detected. Overwriting '${OUTPUTBIN}'."
else
read -r -p "File '${OUTPUTBIN}' already exists. Overwrite? (y/N) " response
if [[ ! "$response" =~ ^([yY])$ ]]; then
echo "Skipping download."
exit 0
fi
fi
fi
curl -L "${NGINX_BINARY_URL}" -o "${OUTPUTBIN}"
chmod +x "${OUTPUTBIN}"
"${OUTPUTBIN}" -v;