Skip to content

Commit 635b648

Browse files
authored
Remove overlay2 from completion in docker migrate-storage-driver (#617)
This is removed from API in home-assistant/supervisor#6399 and from the OS agent in home-assistant/os-agent#245.
1 parent 9deefe9 commit 635b648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/docker_migrate_storage_driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to complete the migration.
2424
if len(args) != 0 {
2525
return nil, cobra.ShellCompDirectiveNoFileComp
2626
}
27-
return []string{"overlayfs", "overlay2"}, cobra.ShellCompDirectiveNoFileComp
27+
return []string{"overlayfs"}, cobra.ShellCompDirectiveNoFileComp
2828
},
2929
Args: cobra.MaximumNArgs(1),
3030
Run: func(cmd *cobra.Command, args []string) {

0 commit comments

Comments
 (0)