From 566a8c68bb4c34031b6f61b2afdcb05c9f1d755c Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Thu, 16 Feb 2012 12:12:42 +0100 Subject: [PATCH] installer: reuse the previous driver installer if it's found --- support/create-installer.cmd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/support/create-installer.cmd b/support/create-installer.cmd index 1d76a37..d3f04ff 100644 --- a/support/create-installer.cmd +++ b/support/create-installer.cmd @@ -23,7 +23,11 @@ IF "%VS100COMNTOOLS%"=="" ( del /s /f /q ..\build mkdir ..\build -call create-driver-installer.cmd +IF EXIST "..\support\p8-usbcec-driver-installer.exe" ( + copy "..\support\p8-usbcec-driver-installer.exe" "..\build\." +) ELSE ( + call create-driver-installer.cmd +) mkdir ..\build\x64 -- 2.34.1