We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50564be commit caf703bCopy full SHA for caf703b
bin/install-elixir.sh
@@ -63,3 +63,12 @@ unzip -qq elixir.zip -d /usr/local \
63
|| { echo "===> Cannot unpack elixir.zip"; exit 1; }
64
65
rm elixir.zip
66
+
67
68
+# Install hex otherwise some Makefile operations like "@mix clean" won't work.
69
+# They expect ./configure to have run and installed hex, but sometimes
70
+# it may be called without a preceding configure call, for instance when
71
+# building packages from a dist tarball. So we ensure it has hex there already.
72
+echo "===> Installing Hex"
73
+MIX_HOME=/home/jenkins/.mix /usr/local/bin/mix local.hex --force
74
+chown -R jenkins:jenkins /home/jenkins
0 commit comments