From e498e90248fb439d327ba6a5e99aa2235d2a637f Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 28 May 2026 17:37:20 -0500 Subject: [PATCH] Update: Script to better handle white spaces. The `"${@}"` will expand spaces correctly into each parameter. The double quotes are requires as `${@}` will not work as expected. --- mount_init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount_init.sh b/mount_init.sh index e6fbffb..31e050d 100644 --- a/mount_init.sh +++ b/mount_init.sh @@ -159,4 +159,4 @@ process_parameters(){ } -process_parameters $1 $2 +process_parameters "${@}" -- 2.52.0