Skip to content

Commit 7b8f8e3

Browse files
committed
fixes to jinstall.sh
1 parent 9810363 commit 7b8f8e3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
123
1+
125

script/jinstall.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ M=$(mktemp -d -t 'jtemp.XXXXXX')
110110
trap 'rm -rf "$M"' EXIT
111111
cd $M
112112

113-
S="https://www.jsoftware.com/download/$V/install"
113+
L="https://www.jsoftware.com/download/$V/install"
114114

115115
if [ "$OS" = "Darwin" ]; then
116116
W=${V}_mac.zip
117-
curl -OL $S/$W
117+
curl -OL $L/$W
118118
unzip $W
119119
else
120120
if [ "$OS" = "Linux" ]; then
@@ -138,7 +138,7 @@ else
138138
W=${V}_obsd.tar.gz
139139
fi
140140
fi
141-
wget $S/$W
141+
wget $L/$W
142142
tar -xf $W
143143
fi
144144

0 commit comments

Comments
 (0)