From 4400aabcc723023d019cd767329a06b00d024ede Mon Sep 17 00:00:00 2001 From: Kai Hendry Date: Mon, 21 Sep 2020 04:09:25 +0000 Subject: [PATCH] Detect SSD for installation --- etc/webc/install-to-disk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/webc/install-to-disk.sh b/etc/webc/install-to-disk.sh index e0492f12a6..d5bd86e5ad 100755 --- a/etc/webc/install-to-disk.sh +++ b/etc/webc/install-to-disk.sh @@ -64,7 +64,7 @@ find_disk() { while true; do local disk local choices=() # Use an array so we can have spaces in the titles - for dev in /dev/[sh]d?; do + for dev in /dev/[sh]d? /dev/nvme[0-9]n[0-9]; do # TODO: Filter out the device we're currently booting from if test -e $dev; then choices+=($dev "$(describe_disk "${dev}")")