Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper committed Jan 30, 2025
1 parent 8149904 commit 0fec8f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wis2box-ctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def update_images_yml() -> str:
current_version = 'Undefined'
# find currently used version of docker-compose.images-*.yml
for file_ in os.listdir('.'):
if file_.startswith('docker-compose.images-') and file.endswith('.yml'):
if file_.startswith('docker-compose.images-') and file_.endswith('.yml'):
current_version = file_.split('images-')[1].split('.yml')[0]

if current_version == version:
Expand Down

0 comments on commit 0fec8f5

Please sign in to comment.