Skip to content

Commit

Permalink
Detect SSD for installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kaihendry committed Sep 21, 2020
1 parent 07e9e29 commit 4400aab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/webc/install-to-disk.sh
Expand Up @@ -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}")")
Expand Down

0 comments on commit 4400aab

Please sign in to comment.