Skip to content

Commit

Permalink
remove arm check, the watchdog issue seems applicable to all architec…
Browse files Browse the repository at this point in the history
  • Loading branch information
cwire4 committed May 2, 2023
1 parent 57530df commit f53ebb7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions jbcli/jbcli/utils/dockerutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ def on_modified(self, event):
else:
path = event.src_path.split("/")

if platform.processor() == "arm":
while path and path[0] != 'devlandia':
path.pop(0)
while path and path[0] != 'devlandia':
path.pop(0)
path.pop(0)

# Path looks like
# ['apps', 'privileging', 'stacks', 'overview', 'templates.html']
Expand Down

0 comments on commit f53ebb7

Please sign in to comment.