File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed
root/etc/s6-overlay/s6-rc.d/init-mod-code-server-julia-install Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 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+
323if [ -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
You can’t perform that action at this time.
0 commit comments