mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-04 05:50:26 +01:00
tools: fix the publish-doc script
Original script was broken, curse those last-minute changes before pushing Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
2e289b2026
commit
6fa0c9aa97
1 changed files with 2 additions and 2 deletions
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
set -e
|
||||
|
||||
[ -e doc ] || echo "Run this from the project root" && exit 1
|
||||
[ -e doc ] || (echo "Run this from the project root" && exit 1)
|
||||
|
||||
make
|
||||
|
||||
[ -e doc/html ] || echo "HTML documentation failed to build" && exit 1
|
||||
[ -e doc/html ] || (echo "HTML documentation failed to build" && exit 1)
|
||||
|
||||
rsync --delete -avz doc/html/ freedesktop.org:/srv/wayland.freedesktop.org/www/libinput/doc/latest
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue