From a08f729748576efe6d41c2404b818a666f549704 Mon Sep 17 00:00:00 2001 From: haru-s Date: Thu, 19 Jan 2023 10:45:10 +0900 Subject: [PATCH] Add dubclean.ps1 for remove intermediate files. --- dubclean.ps1 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 dubclean.ps1 diff --git a/dubclean.ps1 b/dubclean.ps1 new file mode 100644 index 0000000..e33b1ec --- /dev/null +++ b/dubclean.ps1 @@ -0,0 +1,2 @@ +dub clean +dir examples | % { cd $_ && del ./bin/* && dub clean }