Skip to content

Commit

Permalink
additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlianides committed Oct 14, 2024
1 parent fc3179e commit fdc470e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/build_containerImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ function main() {
write_parameter_to_log APP_NAME
write_parameter_to_log DOCKERFILE
write_parameter_to_log REPO_DIR
write_parameter_to_log BUILD_FROM_GITHUB
write_parameter_to_log PUSH_ENABLED

for i in "${!BUILD_ARGS[@]}"; do
Expand Down
3 changes: 2 additions & 1 deletion build/dotnet/build_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ function main() {
write_parameter_to_log BUILDDATE_VALUE
write_parameter_to_log CONTAINER_BUILD
write_parameter_to_log ANNOTATION_CONFIG
write_parameter_to_log BUILD_FROM_GITHUB
write_parameter_to_log PUSH_ENABLED

if [[ -n "${ANNOTATION_CONFIG}" ]]; then
Expand Down Expand Up @@ -492,7 +493,7 @@ function main() {
local extra_cmds=""
[[ "${PUSH_ENABLED}" == false ]] && extra_cmds="${extra_cmds} --no-push"

[[ "${BUILD_FROM_GITHUB}" == false ]] && extra_cmds="${extra_cmds} --build-from-github"
[[ "${BUILD_FROM_GITHUB}" == true ]] && extra_cmds="${extra_cmds} --build-from-github"

run_a_script "${SPACEFX_DIR}/build/build_containerImage.sh \
--dockerfile ${SPACEFX_DIR}/build/dotnet/Dockerfile.app-base \
Expand Down

0 comments on commit fdc470e

Please sign in to comment.