Minor formatting fixes

This commit is contained in:
Dhananjay Balan
2019-08-04 00:16:12 +02:00
parent e8b263cf16
commit 5e7f600ab2
3 changed files with 9 additions and 8 deletions

View File

@@ -56,14 +56,15 @@ pointed out that I could just reuse the builds from my server. So that's what I
have done, I have yet another hetzner box building FreeBSD-CURRENT periodically
with
```
```bash
cd /usr/src && svn update .
make -j 4 buildkernel buildworld KERNCONF=GENERIC-LAPTOP | tee /var/log/lastbuild.log
make -j 4 buildkernel buildworld KERNCONF=GENERIC-LAPTOP | \
tee /var/log/lastbuild.log
```
and I pull it to my laptop with rsync, with roughly following
```
```bash
cd /usr
rsync -avz builder:/usr/src .
rsync -avz builder:/usr/obj .