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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN python -m pip install /log_parser $(for imp in ${EXTENSIONS}; do echo "-r /l
RUN mkdir /log-parser-bin && \
for imp in ${EXTENSIONS}; do \
echo '#!/bin/sh' > "/log-parser-bin/log-parser-${imp}" && \
echo "python /log_parser/extensions/${imp}/cli.py" '"$@"' >> "/log-parser-bin/log-parser-${imp}" && \
echo "exec python /log_parser/extensions/${imp}/cli.py" '"$@"' >> "/log-parser-bin/log-parser-${imp}" && \
chmod u+x "/log-parser-bin/log-parser-${imp}"; \
done

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "log_parser"
version = "1.1.0"
version = "1.1.1"
description = "A simple asynchronous log file parsing library"
readme = "README.md"
requires-python = ">=3.12"
Expand Down