Added logging.

This commit is contained in:
2025-07-07 21:28:50 -07:00
parent e6269b4416
commit c1eadf35f9
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ add_or_remove_nuget_source() {
# Function to add/remove NuGet sources
handle_nuget_sources() {
local action="${1:-add}" # Default to 'add', can be 'remove'
echo "Updating NuGet sources with action: $action"
if [[ -n "$NUGET_SOURCES" ]]; then
# Split sources, usernames, and passwords on newlines
IFS=$'\n' read -rd '' -a sources <<< "$NUGET_SOURCES"