Skip to content

Commit

Permalink
Merge pull request #119 from almenscorner/dev
Browse files Browse the repository at this point in the history
v.1.4.9
  • Loading branch information
almenscorner authored Jun 19, 2023
2 parents a9fcd71 + 4880a63 commit 6ad85bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.8
version = 1.4.9
author = Tobias Almén
author_email = [email protected]
description = Tool to backup and update configurations in Intune
Expand Down
2 changes: 1 addition & 1 deletion src/IntuneCD/run_backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def run_backup(path, output, exclude, token):

results.append(savebackup(path, output, token))

if "deviceCategories" not in exclude:
if "DeviceCategories" not in exclude:
from .backup_deviceCategories import savebackup

results.append(savebackup(path, output, token))
Expand Down
2 changes: 1 addition & 1 deletion src/IntuneCD/run_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def run_update(path, token, assignment, exclude, report, create_groups, remove):
print("-" * 90)
print("***Device Management Settings is only available with interactive auth***")

if "deviceCategories" not in exclude:
if "DeviceCategories" not in exclude:
from .update_deviceCategories import update

diff_summary.append(update(path, token, report, remove))
Expand Down

0 comments on commit 6ad85bf

Please sign in to comment.