3 Commits
1.0.0 ... 1.1.1

Author SHA1 Message Date
7433c31699 fixed home expansion in bash quotes
fuck you bash!
2022-09-18 18:12:06 +02:00
1078366ff5 fixed destination variable name 2022-09-18 17:52:05 +02:00
00f677e992 fixed default deployment source 2022-09-18 16:21:16 +02:00

View File

@@ -2,17 +2,17 @@
set -e
# Check for the source server (with default)
DEPLOY_SOURCE_FILE="~/.deploy_source"
DEPLOY_SOURCE="git.bjphoster.com"
DEPLOY_SOURCE_FILE="${HOME}/.deploy_source"
DEPLOY_SOURCE="https://git.bjphoster.com/deployments"
if [ -f "${DEPLOY_SOURCE_FILE}" ]; then
. "${DEPLOY_SOURCE_FILE}"
fi
# Check for the deploy position (with default)
DEPLOY_DESTINATION_FILE="~/.deploy_destination"
DEPLOY_DESTINATION_FILE="${HOME}/.deploy_destination"
DEPLOY_DESTINATION="/opt"
if [ -f "${DEPLOY_SOURCE_FILE}" ]; then
. "${DEPLOY_SOURCE_FILE}"
if [ -f "${DEPLOY_DESTINATION_FILE}" ]; then
. "${DEPLOY_DESTINATION_FILE}"
fi
# Check if the correct usage is respected