fix: make dev script play nice with _checkouts

This commit is contained in:
Stefan Strigler 2023-10-02 14:50:13 +02:00
parent ca8da5723a
commit c181a0a702
1 changed files with 7 additions and 0 deletions

7
dev
View File

@ -206,6 +206,13 @@ prepare_erl_libs() {
fi fi
done done
fi fi
if [ -e "_build/${profile}/checkouts" ]; then
for app in "_build/${profile}/checkouts"/*; do
erl_libs="${erl_libs}${sep}${app}"
done
else
echo "no checkouts"
fi
export ERL_LIBS="$erl_libs" export ERL_LIBS="$erl_libs"
} }