From c902a2d351c12e14600f06ac633d4a425832d89e Mon Sep 17 00:00:00 2001 From: benyamin-codez <115509179+benyamin-codez@users.noreply.github.com> Date: Fri, 6 Dec 2024 00:56:10 +1100 Subject: [PATCH] [packaging] Fixup buildall.bat Made directory creation conditional (if not exist) Removes reference to non-existent file COPYING Signed-off-by: benyamin-codez <115509179+benyamin-codez@users.noreply.github.com> --- packaging/buildall.bat | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packaging/buildall.bat b/packaging/buildall.bat index 0fdc1d5b2..ea2c936f1 100644 --- a/packaging/buildall.bat +++ b/packaging/buildall.bat @@ -1,11 +1,10 @@ setlocal -mkdir Install +if not exist .\Install mkdir .\Install copy ..\viostor\txtsetup-amd64.oem .\Install\ copy ..\viostor\txtsetup-i386.oem .\Install\ copy ..\viostor\disk1 .\Install\ -copy ..\COPYING .\Install\ copy ..\LICENSE .\Install\ -endlocal \ No newline at end of file +endlocal