Browse Source

Merge pull request #2349 from rumpelsepp/man-update

Update refresh.sh to fetch missing manpages
Jakob Borg 10 years ago
parent
commit
44891b6924
1 changed files with 14 additions and 1 deletions
  1. 14 1
      man/refresh.sh

+ 14 - 1
man/refresh.sh

@@ -1,7 +1,20 @@
 #!/bin/sh
 
 base=http://docs.syncthing.net/man/
-pages=(syncthing-config.5 syncthing-device-ids.7 syncthing-event-api.7 syncthing-faq.7 syncthing-networking.7 syncthing-rest-api.7 syncthing-security.7 syncthing-stignore.5 syncthing-versioning.7 syncthing.1)
+pages=(
+	syncthing.1
+	syncthing-config.5
+	syncthing-stignore.5
+	syncthing-device-ids.7
+	syncthing-event-api.7
+	syncthing-faq.7
+	syncthing-networking.7
+	syncthing-rest-api.7
+	syncthing-security.7
+	syncthing-versioning.7
+	syncthing-bep.7
+	syncthing-localdisco.7
+)
 
 for page in "${pages[@]}" ; do
 	curl -sLO "$base$page"