period3.xyz/deploy.sh

9 lines
159 B
Bash
Raw Normal View History

2022-04-08 02:04:03 +01:00
#!/usr/bin/env bash
2022-09-26 21:50:52 +01:00
repo="$1"
deploypath="$HOME/gemini/content"
sourcepath="content"
2022-04-08 02:04:03 +01:00
2022-09-26 21:50:52 +01:00
[[ -d $deploypath ]] && rm -r $deploypath
cp -r $sourcepath $deploypath