From 6c6437e980129c379f74f14bdf389c5d2314858a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=8B=D1=87=D0=BA=D0=BE=D0=B2=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Wed, 21 Jun 2023 17:20:07 +0300 Subject: [PATCH] typo fix --- utils/deploy_tool/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/deploy_tool/main.cpp b/utils/deploy_tool/main.cpp index 03e77a76..afa4421b 100644 --- a/utils/deploy_tool/main.cpp +++ b/utils/deploy_tool/main.cpp @@ -271,7 +271,7 @@ void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) { if (cur_depth > depth) return; static PIStringList ignore_ext = {"png", "jpg", "jpeg", "gif", "bmp", "svg", "tif", "tiff", "ico", "pdf", "txt", "cfg", "conf", "json", "qml", "glsl", "fraq", "vert", "geom", "qmltypes", - "metainfo", "ts", "qm", "ttf", "htm", "html", "md", "sms", "smee", "blockmodel"}; + "metainfo", "ts", "qm", "ttf", "htm", "html", "md", "sms", "smsee", "blockmodel"}; PIString ext = PIFile::FileInfo(file).extension(); if (ignore_ext.contains(ext.toLowerCase())) return; piCout << "scan" << file << "...";