You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix:
```
In ./pkg/cidata/cidata.TEMPLATE.d/boot/05-lima-disks.sh line 32:
mount -t $FORMAT_FSTYPE "/dev/${DEVICE_NAME}1" "/mnt/lima-${DISK_NAME}"
^------------^ SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
mount -t "$FORMAT_FSTYPE" "/dev/${DEVICE_NAME}1" "/mnt/lima-${DISK_NAME}"
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
```
Signed-off-by: Akihiro Suda <[email protected]>
0 commit comments