10 lines
240 B
Bash
10 lines
240 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo ">> Removing old Private Data..."
|
||
|
rm -rf private/
|
||
|
|
||
|
echo ">> Getting Private Data..."
|
||
|
git clone git@bitbucket.org:TheOrangeOne/theorangeone.net-site-private-data.git --branch master --single-branch private/
|