Skip to content

Commit

Permalink
re-enable kusto for sigma versions 1.*
Browse files Browse the repository at this point in the history
  • Loading branch information
M3NIX committed Nov 11, 2024
1 parent fe4bed4 commit 16e8c05
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions backend/setup-sigma-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ for VERSION in $SIGMA_VERSIONS; do
# remove if installed because of https://github.com/redsand/pySigma-backend-hawk/issues/1
uv -q remove pySigma-backend-hawk

# TODO: some problems with kusto backend, disable for now
uv -q remove pySigma-backend-kusto
# some problems with kusto backend, disable for older sigma versions
if [[ $VERSION == 0.* ]]; then
uv -q remove pySigma-backend-kusto
fi

# remove unused pyparsing imports in older version, see https://github.com/SigmaHQ/pySigma/pull/289#issuecomment-2410153076
find ./ -iwholename "*sigma/conversion/base.py" -exec sed -i "/from pyparsing import Set/d" {} +
Expand Down

0 comments on commit 16e8c05

Please sign in to comment.