mcwrapper 1.6.4 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/mcwrapper/version.rb +1 -1
- data/libexec/mcwrapper +2 -2
- metadata +1 -1
data/lib/mcwrapper/version.rb
CHANGED
data/libexec/mcwrapper
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# https://github.com/spikegrobstein/mcwrapper
|
|
7
7
|
##
|
|
8
8
|
|
|
9
|
-
MCWRAPPER_VERSION="1.6.
|
|
9
|
+
MCWRAPPER_VERSION="1.6.5"
|
|
10
10
|
|
|
11
11
|
#### Exit Codes
|
|
12
12
|
|
|
@@ -705,7 +705,7 @@ function get_server_download_uri () {
|
|
|
705
705
|
# filter down to only the linux server download link
|
|
706
706
|
# extract the .jar URL
|
|
707
707
|
curl -s "$MINECRAFT_DOWNLOAD_PAGE" \
|
|
708
|
-
| grep -o -E '<a
|
|
708
|
+
| grep -o -E '<a [^>]+>' \
|
|
709
709
|
| grep -E 'data-platform=.linux' \
|
|
710
710
|
| grep -E 'data-dist=.server' \
|
|
711
711
|
| grep -o -E 'https:.+?jar'
|