Fix a typo in variables declaration in validate-icons (#2141)

main
jvoisin 7 years ago committed by Elbert Alias
parent 6a691ca768
commit 1982972c7f

@ -16,7 +16,7 @@ var
for (app in json.apps) {
(function(app) {
var
iconPath = json.apps[app].icon || 'default.svg';
iconPath = json.apps[app].icon || 'default.svg',
path = basePath + iconPath,
ext = iconPath.substr(iconPath.length - 4);