Skip to content

Commit 2dee8db

Browse files
committed
remove "64" from jinstall.sh
1 parent 9d158d2 commit 2dee8db

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
114
1+
115

script/jinstall.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,29 +169,29 @@ cd $M
169169
S="https://www.jsoftware.com/download/$V/install"
170170

171171
if [ "$OS" = "Darwin" ]; then
172-
W=${V}_mac64.zip
172+
W=${V}_mac.zip
173173
curl -OL $S/$W
174174
unzip $W
175175
else
176176
if [ "$OS" = "Linux" ]; then
177177
if [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ] ; then
178-
W=${V}_raspi64.tar.gz
178+
W=${V}_raspi.tar.gz
179179
elif [ "$ARCH" = "armv6l" ]; then
180180
W=${V}_raspi32.tar.gz
181181
else
182-
W=${V}_linux64.tar.gz
182+
W=${V}_linux.tar.gz
183183
fi
184184
elif [ "$OS" = "FreeBSD" ]; then
185185
if [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ] ; then
186186
printf "This script only works for x86_64\n" ; exit 1
187187
else
188-
W=${V}_fbsd64.tar.gz
188+
W=${V}_fbsd.tar.gz
189189
fi
190190
elif [ "$OS" = "OpenBSD" ]; then
191191
if [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ] ; then
192192
printf "This script only works for x86_64\n" ; exit 1
193193
else
194-
W=${V}_obsd64.tar.gz
194+
W=${V}_obsd.tar.gz
195195
fi
196196
fi
197197
wget $S/$W

0 commit comments

Comments
 (0)