summarylogtreecommitdiffstats
path: root/get-changelog.sh
diff options
context:
space:
mode:
authorLuis Martinez2021-10-31 00:08:43 -0500
committerLuis Martinez2021-10-31 00:08:43 -0500
commitf51a83ae7e132a4449a6646c52ce9b7d608703d6 (patch)
tree0761715f4f397ed493e4091448abc9cc8cced26b /get-changelog.sh
parent29a1aebc0e8409c36f4af9be4f7b223dec39ffbe (diff)
downloadaur-f51a83ae7e132a4449a6646c52ce9b7d608703d6.tar.gz
update to 2.1.53
* added changelog fetching script to repo
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