diff options
Diffstat (limited to 'personal-pkgs-repo')
-rw-r--r-- | personal-pkgs-repo/files/updater.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/personal-pkgs-repo/files/updater.lua b/personal-pkgs-repo/files/updater.lua index b84c1a6..9c29984 100644 --- a/personal-pkgs-repo/files/updater.lua +++ b/personal-pkgs-repo/files/updater.lua @@ -1,7 +1,7 @@ local board if model:match('[Oo]mnia') then board = "omnia" -if model:match('^[Tt]urris$') then +elseif model:match('^[Tt]urris$') then board = "turris" else DIE("Unsupported board!") |