mirror of
https://github.com/syncthing/syncthing.git
synced 2026-04-08 08:27:56 -04:00
12 lines
160 B
Bash
Executable File
12 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
git pull
|
|
rm -fr _build
|
|
make html
|
|
|
|
rm -rf _deployed.old
|
|
[ -d _deployed ] && mv _deployed _deployed.old || true
|
|
mv _build _deployed
|
|
|