On 5/31/23 22:29, Alin Serdean wrote: > Acked-by: Alin Gabriel Serdean <[email protected]>
Thanks! I applied this one patch. Best regards, Ilya Maximets. > >> >> On 31 May 2023, at 21:23, Ilya Maximets <[email protected]> wrote: >> >> Git by default reports progress on stderr. This doesn't fail >> the build, but upsets the powershell: >> >> git : Cloning into 'c:\pthreads4w-code'... >> At line:3 char:1 >> + git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-cod ... >> + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >> + CategoryInfo : NotSpecified: >> (Cloning into 'c:\pthreads4w-code'...:String) [], RemoteException >> + FullyQualifiedErrorId : NativeCommandError >> >> Silence the git clone to avoid the warning. >> >> Signed-off-by: Ilya Maximets <[email protected]> >> --- >> appveyor.yml | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/appveyor.yml b/appveyor.yml >> index 3287733b2..6bf5db8fd 100644 >> --- a/appveyor.yml >> +++ b/appveyor.yml >> @@ -15,7 +15,7 @@ init: >> >> cd C:\openvswitch >> >> - git clone https://git.code.sf.net/p/pthreads4w/code c:\pthreads4w-code >> + git clone -q https://git.code.sf.net/p/pthreads4w/code >> c:\pthreads4w-code >> >> python3 -m pip install pypiwin32 --disable-pip-version-check >> >> -- >> 2.40.1 >> _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
