File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ echo $1
4+ echo $2
5+
36build_pack_dir=$( cd $( dirname $( dirname $0 ) ) ; pwd)
47build_dir=$1
58cache_dir=$2
@@ -28,6 +31,8 @@ elixir_source_url="https://github.com/elixir-lang/elixir/tarball/${elixir_tar}"
2831echo " Erlang version $erlang_version "
2932echo " Elixir version $elixir_version "
3033
34+ ls ${cache_dir}
35+
3136(
3237 set -e
3338
@@ -36,9 +41,11 @@ echo "Elixir version $elixir_version"
3641 # To not add too much stuff to the cache dir
3742 rm -rf ${cache_dir} /*
3843
44+ ls ${cache_dir}
45+ cd ${cache_dir}
3946 echo " Fetching Erlang source..."
40- curl -ksO ${erlang_source_url} -o ${cache_dir} / ${ erlang_tar} || exit 1
41- ls ${cache_dir} /
47+ curl -ksO ${erlang_source_url} -o ${erlang_tar} || exit 1
48+ ls .
4249)
4350
4451ls ${cache_dir} /
You can’t perform that action at this time.
0 commit comments