forked from github/plane
e1f13af084
* fix-1 * test 2 * try 3 * try 4 * try 5 * try 6 * try 7 * try 8 * wip * config changes * removed instructions after install * wip * wip * wip * wip * cron added * wip * added daily update flag * upgrade modified * crontab added * upgrade fixes * crontab modified * cron fixes
21 lines
758 B
Bash
21 lines
758 B
Bash
#!/bin/bash
|
|
|
|
export GIT_REPO=makeplane/plane
|
|
|
|
# Check if the user has sudo access
|
|
if command -v curl &> /dev/null; then
|
|
sudo curl -sSL \
|
|
-o /usr/local/bin/plane-app \
|
|
https://raw.githubusercontent.com/$GIT_REPO/${BRANCH:-master}/deploy/1-click/plane-app?token=$(date +%s)
|
|
else
|
|
sudo wget -q \
|
|
-O /usr/local/bin/plane-app \
|
|
https://raw.githubusercontent.com/$GIT_REPO/${BRANCH:-master}/deploy/1-click/plane-app?token=$(date +%s)
|
|
fi
|
|
|
|
sudo chmod +x /usr/local/bin/plane-app
|
|
sudo sed -i 's@export DEPLOY_BRANCH=${BRANCH:-master}@export DEPLOY_BRANCH='${BRANCH:-master}'@' /usr/local/bin/plane-app
|
|
sudo sed -i 's@CODE_REPO=${GIT_REPO:-makeplane/plane}@CODE_REPO='$GIT_REPO'@' /usr/local/bin/plane-app
|
|
|
|
plane-app -i #--help
|