File: autobuild.sh

package info (click to toggle)
copyq 13.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,964 kB
  • sloc: cpp: 63,306; sh: 992; xml: 452; python: 293; ruby: 152; makefile: 27; javascript: 25
file content (13 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Automatically re-build the documentation whenever it changes.
#
# Requires sphinx-autobuild script:
#
#     pip install --user sphinx-autobuild
#     export PATH="$HOME/.local/bin:$PATH"
#
exec sphinx-autobuild \
    --ignore '.*' \
    --ignore "*.swp" \
    --ignore "*~" \
    . _build/html