summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Belt <andrewpbelt@gmail.com>2022-12-16 12:36:51 -0500
committerAndrew Belt <andrewpbelt@gmail.com>2022-12-16 12:36:51 -0500
commit05a340c150f7503cb4a9ace001a9d4e345baf715 (patch)
tree19c595ea0503e2674fb1518c1853464a3020aabf
parentf7c8e097e2926334b5b859baa106fe66ad54178c (diff)
Add *.dylib/dll/so to gitignore generated by helper.py.
-rwxr-xr-xhelper.py6
1 files 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: