summarylogtreecommitdiffstats
path: root/get-changelog.sh
diff options
context:
space:
mode:
Diffstat (limited to 'get-changelog.sh')
-rwxr-xr-xget-changelog.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/get-changelog.sh b/get-changelog.sh
new file mode 100755
index 000000000000..9fe0873f72d4
--- /dev/null
+++ b/get-changelog.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+if [ -z "$1" ]; then
+ echo 'usage: ./get-changelog.sh "<version>"'
+else
+ curl -O "https://raw.githubusercontent.com/pantsbuild/pex/v$1/CHANGES.rst"
+fi