Skip to content

Commit af9fc47

Browse files
committed
Adding a shell script to enqueue the target binary.
RE:natcap#1580
1 parent 9f772ce commit af9fc47

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env sh
2+
#
3+
# Run this script to enqueue the windows binary for this current version of the
4+
# InVEST windows workbench installer for code signing.
5+
#
6+
# NOTE: this script must be run from the directory containing this script.
7+
8+
version=$(python -m setuptools_scm)
9+
url_base=$(make -C .. print-DIST_URL_BASE | awk ' { print $3 } ')
10+
url="${url_base}/workbench/invest_${version}_workbench_win32_x64.exe"
11+
12+
python enqueue-binary.py "${url}"

0 commit comments

Comments
 (0)