aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/build/plugin-versions/bignums.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dev/build/plugin-versions/bignums.sh')
-rwxr-xr-xdev/build/plugin-versions/bignums.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev/build/plugin-versions/bignums.sh b/dev/build/plugin-versions/bignums.sh
deleted file mode 100755
index 8a4ddf5fc..000000000
--- a/dev/build/plugin-versions/bignums.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-case "$1" in
- git-master|/cygdrive*)
- # First get the SHA of master/HEAD and then download a zip of exactly this state
- BIGNUMS_SHA=$(git ls-remote 'https://github.com/coq/bignums' refs/heads/master | cut -f 1)
-
- echo https://github.com/coq/bignums/archive "$BIGNUMS_SHA" zip 1 "bignums-$BIGNUMS_SHA"
- ;;
- *)
- echo https://github.com/coq/bignums/archive V8.8.0 zip 1 bignums-V8.8+beta1
- ;;
-esac