This is an automated email from the ASF dual-hosted git repository.
zoltan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/master by this push:
new ae0515466 Remove all bin,obj when cleaning (#2500)
ae0515466 is described below
commit ae0515466f963fa5e214084df49f7481fd5c3368
Author: Zoltan Csizmadia <[email protected]>
AuthorDate: Mon Sep 18 10:10:40 2023 -0500
Remove all bin,obj when cleaning (#2500)
Co-authored-by: Zoltan Csizmadia <[email protected]>
---
lang/csharp/build.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lang/csharp/build.sh b/lang/csharp/build.sh
index 623ef03a3..82a9bf97d 100755
--- a/lang/csharp/build.sh
+++ b/lang/csharp/build.sh
@@ -85,7 +85,8 @@ do
;;
clean)
- rm -rf src/apache/{main,test,codegen,ipc,msbuild,perf}/{obj,bin}
+ rm -rf
src/apache/{main,test,codegen,ipc,msbuild,perf,benchmark}/{obj,bin}
+ rm -rf
src/apache/codec/Avro.File.{BZip2,Snappy,XZ,ZStandard}{,.Test}/{obj,bin}
rm -rf build
rm -f TestResult.xml
;;