Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
do not casefold ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
Heavybullets8 committed Aug 20, 2023
1 parent f11a015 commit 1bba990
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion functions/pvc/unmount.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ unmount_app_func(){
apps=("$1")

for i in "${!apps[@]}"; do
apps[i]="${apps[$i],,}"
if [[ "${apps[$i]}" != "ALL" ]]; then
apps[i]="${apps[$i],,}"
fi
done

ix_apps_pool=$(cli -c 'app kubernetes config' |
Expand Down

0 comments on commit 1bba990

Please sign in to comment.