| 690 | } |
| 691 | |
| 692 | bool DeployCore::isDebugFile(const QString &file) { |
| 693 | auto debug = debugExtensions(); |
| 694 | for (const auto& debugEx: debug) { |
| 695 | if (file.contains(debugEx, Qt::CaseInsensitive)) { |
| 696 | return true; |
| 697 | } |
| 698 | } |
| 699 | |
| 700 | return false; |
| 701 | } |
| 702 | |
| 703 | int DeployCore::find(const QString &str, const QStringList &list) { |
| 704 | for (int i = 0 ; i < list.size(); ++i) { |