Skip to content

Commit 9f611a5

Browse files
committed
Ensure that mode hook is executed last
Signed-off-by: Evan Lezar <[email protected]>
1 parent e330a93 commit 9f611a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/runtime/runtime_factory.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ func supportedModifierTypes(mode string) []string {
128128
return []string{"nvidia-hook-remover", "mode"}
129129
case "csv":
130130
// For CSV mode we support mode and feature-gated modification.
131-
return []string{"nvidia-hook-remover", "mode", "feature-gated"}
131+
return []string{"nvidia-hook-remover", "feature-gated", "mode"}
132132
default:
133-
return []string{"mode", "graphics", "feature-gated"}
133+
return []string{"feature-gated", "graphics", "mode"}
134134
}
135135
}

0 commit comments

Comments
 (0)