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

Commit

Permalink
pass remaining array items to function
Browse files Browse the repository at this point in the history
  • Loading branch information
Heavybullets8 committed Aug 20, 2023
1 parent a901c81 commit cfc4e9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/pvc/handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ pvc_handler() {
# Call the function to mount the app
mount_app_func "${args[@]:1}"
;;
-u | --unmount) "${args[@]:1}"
-u | --unmount)
# Call the function to unmount the app
unmount_app_func
unmount_app_func "${args[@]:1}"
;;
-h | --help)
# Call the function to display help for the pvc command
Expand Down

0 comments on commit cfc4e9b

Please sign in to comment.