Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SFrijters committed Sep 9, 2024
1 parent e9c911c commit 6bd9b38
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,14 @@
raise Exception("Missing text 'Subject: Logwatch for server' in output of 'mail -p'")
if "unstable" not in "${self.packages.${system}.logwatch.version}":
if "Logwatch ${self.packages.${system}.logwatch.version}" not in mail:
raise Exception("Missing text 'Logwatch ${self.packages.${system}.logwatch.version} in output of 'mail -p'")
raise Exception("Missing text 'Logwatch ${
self.packages.${system}.logwatch.version
} in output of 'mail -p'")
else:
if "Logwatch ${self.packages.${system}.logwatch.src.rev}" not in mail:
raise Exception("Missing text 'Logwatch ${self.packages.${system}.logwatch.src.rev} in output of 'mail -p'")
raise Exception("Missing text 'Logwatch ${
self.packages.${system}.logwatch.src.rev
} in output of 'mail -p'")
'';
};

Expand Down

0 comments on commit 6bd9b38

Please sign in to comment.