You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by da...@apache.org on 2021/12/16 08:29:13 UTC

[logging-log4net] 05/05: :wrench: should exclude executables from source zip

This is an automated email from the ASF dual-hosted git repository.

davydm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git

commit dfe14c7c8dd344dae7e1136494fc51edba123ef2
Author: Davyd McColl <da...@gmail.com>
AuthorDate: Thu Dec 16 10:27:42 2021 +0200

    :wrench: should exclude executables from source zip
---
 local-tasks/zip.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/local-tasks/zip.js b/local-tasks/zip.js
index 1225a21..3876fb8 100644
--- a/local-tasks/zip.js
+++ b/local-tasks/zip.js
@@ -40,7 +40,8 @@ gulp.task("zip-source", async () => {
       "!build",
       "!build/**/*",
       "!.idea",
-      "!.idea/**/*"
+      "!.idea/**/*",
+      "!*.exe"
     ])
       .pipe(rename(path => {
         path.dirname = `${baseDir}/${path.dirname}`