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 c913b55 commit e97a548Copy full SHA for e97a548
bin/compile
@@ -7,7 +7,6 @@ erlang_root="${build_dir}/erlang"
7
elixir_root="${build_dir}/elixir"
8
mkdir -p $1 $2
9
mkdir -p ${erlang_root}
10
-mkdir -p ${elixir_root}
11
12
language_versions_file="${build_dir}/.language_versions"
13
@@ -69,7 +68,9 @@ PATH=${build_pack_dir}:$PATH
69
68
curl -LksO ${elixir_source_url} || exit 1
70
)
71
72
-tar zxf ${cache_dir}/${elixir_tar} -C ${elixir_root} --strip-components=2
+rm -rf ${elixir_root}
+tar zxf ${cache_dir}/${elixir_tar} --strip-components=2
73
+mv "elixir-${elixir_version}" ${elixir_root}
74
75
echo "Listing cache dir"
76
ls $cache_dir
0 commit comments