blob: 985dd8c522438dc439b6dad122e18792f4ab12f9 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
doas adduser -h /home/joeac.net joeac.net \
&& cd /home/joeac.net \
&& sudo -u joeac.net git clone https://git.joeac.net/joeac.net.git joeac.net \
&& sudo ln -s /home/joeac.net/joeac.net /usr/local/lib/joeac.net \
&& cd joeac.net \
&& sudo -u joeac.net make \
&& sudo -u joeac.net make install
|