diff options
| author | Felix Scheinost <fesc@symentis.com> | 2023-11-09 12:44:10 +0100 |
|---|---|---|
| committer | Felix Scheinost <fesc@symentis.com> | 2023-11-09 12:44:10 +0100 |
| commit | 39a412d47ddb87f84e1a0d3eb168b0ce0d30498e (patch) | |
| tree | 91746b9fc99c28f92ed94a4ad5cef63f57acb497 | |
| parent | eb2b9b64238349bd351561e32e260cac15db6f9a (diff) | |
Fix unbound variable `etcProblems`
I have another activationScript which traps errors. Currently `etcProblems` can be unbound.
| -rw-r--r-- | modules/system/etc.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/etc.nix b/modules/system/etc.nix index 9608033..1c41526 100644 --- a/modules/system/etc.nix +++ b/modules/system/etc.nix @@ -48,7 +48,7 @@ in etc} ) - declare -a etcProblems + declare -a etcProblems=() while IFS= read -r -d "" configFile; do subPath=''${configFile#"$systemConfig"/etc/} |
