diff options
author | Karel Kočí <cynerd@email.cz> | 2018-09-07 23:22:28 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-09-07 23:22:28 +0200 |
commit | 17358e1d95a553388c5aa1d664fd708f80821b6d (patch) | |
tree | 37add7db566bd601ea8d68b85e5eaca2ce8dd312 /personal-pkgs-repo/files | |
parent | c3fb448c05022ea78ee59215f3c9aa4dbd859b9f (diff) | |
download | openwrt-personal-pkgs-17358e1d95a553388c5aa1d664fd708f80821b6d.tar.gz openwrt-personal-pkgs-17358e1d95a553388c5aa1d664fd708f80821b6d.tar.bz2 openwrt-personal-pkgs-17358e1d95a553388c5aa1d664fd708f80821b6d.zip |
personal-pkgs-repo: fix updater configuration
Diffstat (limited to 'personal-pkgs-repo/files')
-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!") |