Skip to content

Commit

Permalink
typo in array
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Campbell committed Jun 17, 2024
1 parent 46ba9cc commit 930b804
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions modules/m_110_debugshim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,18 +111,20 @@ function wait_for_deployment_deletion_by_app_id() {
function _auto_add_downloads() {
info_log "START: ${FUNCNAME[0]}"

info_log "Adding downloads and artifacts for APP_TYPE '${APP_TYPE}'..."

case "${APP_TYPE}" in
"sdk-service")
ARTIFACTS+=("Microsoft.Azure.SpaceFx.Core.${SPACEFX_VERSION}.nupkg")
ARTIFACTS+=("Common.proto")
DOWNLOAD_ARTIFACTS+=("Microsoft.Azure.SpaceFx.Core.${SPACEFX_VERSION}.nupkg")
DOWNLOAD_ARTIFACTS+=("Common.proto")
;;
esac


# TODO: update to scan for dotnet solutions (*.sln) and python files (*.py) to calculate which dev_language we're using
# if [[ "${DEV_LANGUAGE}" == "python" ]]; then
# PACKAGES+=("socat")
# PACKAGES+=("nuget")
# EXTRA_PACKAGES+=("socat")
# EXTRA_PACKAGES+=("nuget")
# fi

info_log "END: ${FUNCNAME[0]}"
Expand Down

0 comments on commit 930b804

Please sign in to comment.