Skip to content

Commit 41ea9a4

Browse files
committed
Supress cert check for elixir source fetching
1 parent cec433f commit 41ea9a4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bin/compile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ echo "Elixir version $elixir_version"
4444
curl -ksO ${erlang_source_url} -o ${erlang_tar} || exit 1
4545
)
4646

47-
ls ${cache_dir}/
48-
4947
echo "Unpacking Erlang ${erlang_version}"
5048
tar zxf ${cache_dir}/${erlang_tar} -C ${erlang_root} --strip-components=2
5149

@@ -68,7 +66,7 @@ PATH=${build_pack_dir}:$PATH
6866

6967
cd ${cache_dir}
7068
echo "Fetching Elixir ${elixir_version}"
71-
curl -LsO ${elixir_source_url} -o $elixir_tar || exit 1
69+
curl -LksO ${elixir_source_url} -o $elixir_tar || exit 1
7270
tar zxf ${cache_dir}/${elixir_tar} -C ${elixir_root} --strip-components=2
7371
)
7472

0 commit comments

Comments
 (0)