File: download-missing-sources.sh

package info (click to toggle)
qutebrowser 2.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,324 kB
  • sloc: python: 71,332; javascript: 31,830; sh: 768; xml: 133; makefile: 51
file content (11 lines) | stat: -rwxr-xr-x 260 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

D=$(dirname $0)
V=$(head -1 $D/changelog | awk -F'[-()]' '{print $2}')

cd $D/missing-sources/

for f in settings configuring; do
    wget -O ${f}.asciidoc \
         https://github.com/qutebrowser/qutebrowser/raw/v${V}/doc/help/${f}.asciidoc
done;