6 lines
257 B
Bash
6 lines
257 B
Bash
#!/bin/bash
|
|
echo "Creating a backup of the current deployment script"
|
|
cp -f /usr/local/bin/deploy.sh /usr/local/bin/deploy.bck
|
|
echo "Updating XO deployment script"
|
|
curl -s -o /usr/local/bin/deploy.sh https://git.xoservice.nl/deploy/deploy.sh
|
|
echo "All done" |