From: Eric Biggers Date: Tue, 11 Sep 2018 03:11:31 +0000 (-0700) Subject: imagex: warn that --update-of is unreliable on Windows X-Git-Tag: v1.13.0~3 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=50a62891f75afdbfde97031125fbaccd4ed0419c;hp=e7e2c4d677c3c40b45160ace50159ee18fcb4986 imagex: warn that --update-of is unreliable on Windows --- 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);