Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions kgo_updates/meto_update_kgo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ fi
# Prompt user for Update Details
echo "Enter the platforms requiring a kgo update"
echo "Enter platforms lowercase and space separated, eg. ex1a azspice"
read -r platforms
read -rp "Suite Username: " suite_user
read -rp "Platforms (default ex1a azspice): " platforms
platforms=${platforms:-"ex1a azspice"}
read -rp "Suite Username (default ${USER}): " suite_user
suite_user=${suite_user:-"${USER}"}
if [[ $platforms == *"ex1a"* ]]; then
while :
do
Expand Down