Skip to content

Commit 1751b2c

Browse files
committed
deprecate arm32v7 support on v3 init
1 parent 86d3e3b commit 1751b2c

File tree

1 file changed

+20
-1
lines changed
  • root/etc/s6-overlay/s6-rc.d/init-mod-code-server-julia-install

1 file changed

+20
-1
lines changed

root/etc/s6-overlay/s6-rc.d/init-mod-code-server-julia-install/run

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
#!/usr/bin/with-contenv bash
22

3+
ARCH=$(uname -m)
4+
if [ "${ARCH}" = "armv7l" ]; then
5+
echo '
6+
*********************************************************
7+
*********************************************************
8+
**** ****
9+
**** julia binaries are no longer guaranteed ****
10+
**** ****
11+
**** to be available on arm32v7 ****
12+
**** ****
13+
**** therefore this mod no longer supports ****
14+
**** ****
15+
**** arm32v7 ****
16+
**** ****
17+
*********************************************************
18+
*********************************************************
19+
'
20+
exit 0
21+
fi
22+
323
if [ -d "/julia-bins" ]; then
424
echo "**** Installing/updating Julia ****"
5-
ARCH=$(uname -m)
625
mkdir -p /julia
726
tar xf "/julia-bins/julia-${ARCH}.tar.gz" -C \
827
/julia --strip-components=1

0 commit comments

Comments
 (0)