From 427d30890937f9be87bf74ad0ba0ab2f132a8a13 Mon Sep 17 00:00:00 2001 From: Michael Larabel Date: Tue, 18 Aug 2020 16:41:15 -0500 Subject: [PATCH] pts-core: Fix Windows installer when path has a space https://github.com/phoronix-test-suite/phoronix-test-suite/issues/464 --- install.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.bat b/install.bat index 0c4b5d641..587075c8a 100644 --- a/install.bat +++ b/install.bat @@ -2,7 +2,7 @@ :: Phoronix Test Suite :: URLs: http://www.phoronix.com, http://www.phoronix-test-suite.com/ -:: Copyright (C) 2018, Phoronix Media +:: Copyright (C) 2018 - 2020, Phoronix Media :: :: This program is free software; you can redistribute it and/or modify :: it under the terms of the GNU General Public License as published by @@ -29,5 +29,5 @@ md %destination% :: cd /d %destination% :: for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q) -xcopy %cd% %destination% /E +xcopy "%cd%" %destination% /E echo Phoronix Test Suite installed to %destination%