all repos — site @ 5249c46df79f529cd6decc696fd67aad51e61e59

source for my site, found at icyphox.sh

deploy.sh (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
#!/usr/bin/env bash

# colors
ylw='\033[0;33m'
grn='\033[0;32m'
rst='\033[0m'

echo -e "$ylw[~]$rst Deploying to gh-pages..."
git subtree push --prefix build origin gh-pages
echo -e "$grn[+]$rst Done! Check it out at: https://icy.ph0x.me"