From decc2cecc4b580bc5f4527d6094b4cb2f71610b2 Mon Sep 17 00:00:00 2001 From: Timerix22 Date: Thu, 8 Dec 2022 22:45:06 +0600 Subject: [PATCH] push_packages.sh read -s for hiding input in terminal --- push_packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/push_packages.sh b/push_packages.sh index 53b6c0e..e1c0527 100644 --- a/push_packages.sh +++ b/push_packages.sh @@ -1,9 +1,9 @@ #!/usr/bin/bash echo enter github api key: -read -r GHK +read -rs GHK echo enter nuget api key: -read -r NGK +read -rs NGK for PACK in $(find ./nuget -name '*.nupkg'); do dotnet nuget push $PACK -k $GHK -s github --skip-duplicate