File: spec.sh

package info (click to toggle)
python-mistletoe 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 864 kB
  • sloc: python: 5,649; sh: 66; makefile: 40
file content (17 lines) | stat: -rwxr-xr-x 215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

set -e

VERSION="0.30"
URL="https://spec.commonmark.org/$VERSION/spec.json"

function main {
    echo "Using version $VERSION..."

    curl -k -o commonmark.json $URL

    echo "Done."
}

main