Skip to content

Commit

Permalink
Merge pull request #99 from almenscorner/dev
Browse files Browse the repository at this point in the history
Bug fix - update group not included
  • Loading branch information
almenscorner authored Mar 10, 2023
2 parents 58ccb79 + 13df052 commit 1d877e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = IntuneCD
version = 1.4.0
version = 1.4.1
author = Tobias Almén
author_email = [email protected]
description = Tool to backup and update configurations in Intune
Expand Down
4 changes: 3 additions & 1 deletion src/IntuneCD/run_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,9 @@ def run_update(path, token, assignment, exclude, report, create_groups):
if args.frontend:
old_stdout = sys.stdout
sys.stdout = feedstdout = StringIO()
summary = run_update(args.path, token, args.u, exclude, args.report)
summary = run_update(
args.path, token, args.u, exclude, args.report, args.create_groups
)
sys.stdout = old_stdout
feed_bytes = feedstdout.getvalue().encode("utf-8")
out = base64.b64encode(feed_bytes).decode("utf-8")
Expand Down

0 comments on commit 1d877e4

Please sign in to comment.