mirror of
https://github.com/syncthing/syncthing.git
synced 2026-04-08 16:38:03 -04:00
11 lines
165 B
Bash
Executable File
11 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
git pull
|
|
make clean html man latexpdf
|
|
|
|
rm -rf _deployed.old
|
|
[ -d _deployed ] && mv _deployed _deployed.old || true
|
|
mv _build _deployed
|
|
|