From 50a62891f75afdbfde97031125fbaccd4ed0419c Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Mon, 10 Sep 2018 20:11:31 -0700 Subject: [PATCH] imagex: warn that --update-of is unreliable on Windows --- programs/imagex.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/programs/imagex.c b/programs/imagex.c index a372c14e..2d407fac 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -2020,6 +2020,9 @@ imagex_capture_or_append(int argc, tchar **argv, int cmd) template_image_name_or_num = optarg; } } + #ifdef __WIN32__ + imagex_printf(T("[WARNING] '--update-of' is unreliable on Windows!\n")); + #endif break; case IMAGEX_DELTA_FROM_OPTION: ret = string_list_append(&base_wimfiles, optarg); -- 2.43.0