Skip to content

Commit

Permalink
fixed version-handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Jan 17, 2024
1 parent 7ef2119 commit aaacf89
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ansible-webui/manage.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
#!/usr/bin/env python3

from os import environ
from sys import argv as sys_argv


def main():
# workaround for CI
if 'AW_VERSION' not in environ:
environ['AW_VERSION'] = '0.0.0'

# pylint: disable=E0401,C0415
from aw.config.main import init_globals
init_globals()
Expand Down

0 comments on commit aaacf89

Please sign in to comment.