Skip to content

Commit

Permalink
Per #2611, added redirection to std out for make command
Browse files Browse the repository at this point in the history
  • Loading branch information
jprestop committed Nov 10, 2023
1 parent e07b7ba commit c0efc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scripts/docker/build_met_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi

LOG_FILE=/met/logs/MET-${MET_GIT_NAME}_make_install.log
echo "Compiling MET ${MET_GIT_NAME} and writing log file ${LOG_FILE}"
make ${MAKE_ARGS} install > ${LOG_FILE}
make ${MAKE_ARGS} install > ${LOG_FILE} 2>&1
if [ $? != 0 ]; then
cat ${LOG_FILE}
exit 1
Expand Down

0 comments on commit c0efc35

Please sign in to comment.