Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ On Linux & Mac, make the hook executable:
chmod +x ~/.githooks/commit-msg
```

On Mac you may run into a security warning. To resolve this:
```shell
xattr -rd com.apple.quarantine commit-msg
```

Lastly, edit this config file to your liking:

~/.githooks/commit-msg-config.ini
Expand Down
7 changes: 0 additions & 7 deletions scripts/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""
import os
import platform
import shutil
import sys
from shutil import copy2 as copy, rmtree

Expand Down Expand Up @@ -47,9 +46,3 @@
# Save config with executable
copy(os.path.join("src", "main", CONFIG_FILE_NAME),
os.path.join(EXE_FILE_FOLDER, CONFIG_FILE_NAME))

# Output a zip file with the configuration file + executable
# in the current working directory
zip_file_name = OS_ALIAS.capitalize()
shutil.make_archive(zip_file_name, 'zip', EXE_FILE_FOLDER)
print(f"Wrote zip file: {zip_file_name}")
Loading