Skip to content

Commit

Permalink
re-enable custom conda recipe logging
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvdp committed Feb 22, 2022
1 parent ee62b0a commit 12e9387
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,9 @@ check_status() {
build-custom-packages() {
for p in "${custom_pkgs[@]}"; do
cd "$SCRIPT_DIR/custom-recipes/$p"
printf "Building custom conda package for '$p'..."
conda build . &>$p.build.log && echo "OK!" || echo "Error!" || true
echo ">>> Building custom conda package for '$p'"
conda build . && echo "OK!" || echo "Error!" || true
echo ">>> Completed custom conda package for '$p' "
done
cd "$SCRIPT_DIR"
true
Expand Down

0 comments on commit 12e9387

Please sign in to comment.