diff --git a/.github/steps/build_action.py b/.github/steps/build_action.py index 2cb6414..b663328 100644 --- a/.github/steps/build_action.py +++ b/.github/steps/build_action.py @@ -44,7 +44,7 @@ def main(): # Files in the Nix store are read-only and the checkout action then fails # to clean up afterwards. Help a bit by making the copied files writable. - for (root, dirs, files) in os.walk("dist"): + for root, dirs, files in os.walk("dist"): for name in dirs: path = os.path.join(root, name) os.chmod(path, 0o755)