Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created May 23, 2019 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmcw/6727b188ef5c772ef56c59292e6cf55b to your computer and use it in GitHub Desktop.
Save tmcw/6727b188ef5c772ef56c59292e6cf55b to your computer and use it in GitHub Desktop.
#!/bin/zsh
ipfs daemon &
PID1=$!
echo "Jekyll building…"
bundle exec jekyll build
cd _site
make-relative https://macwright.org/
hash=`ipfs add -r -q . | tail -1`
echo "Root hash: ${hash}"
echo "Pinning…"
ssh -t pi@raspberrypi.local "ipfs pin add $hash"
echo "Pinned."
kill $PID1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment