From 05a340c150f7503cb4a9ace001a9d4e345baf715 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 16 Dec 2022 12:36:51 -0500 Subject: [PATCH] Add *.dylib/dll/so to gitignore generated by helper.py. --- helper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helper.py b/helper.py index c93ead39..8aaf6de4 100755 --- a/helper.py +++ b/helper.py @@ -140,9 +140,9 @@ void init(Plugin* p) { git_ignore = """/build /dist -/plugin.so -/plugin.dylib -/plugin.dll +/*.so +/*.dylib +/*.dll .DS_Store """ with open(os.path.join(plugin_dir, ".gitignore"), "w") as f: