9 lines
240 B
Bash
Executable file
9 lines
240 B
Bash
Executable file
#!/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/
|