-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(pkgs) Fix GetCommand on msi / inno nullsoft exe
- Try to use the old getCommand generator to get the command. If nothing is found, use the rules. - msi are detected by the old system. - This commit update the rule on nullsoft exe. Before this modification all exe were caught by the "nullsoft rule".
- Loading branch information
Showing
3 changed files
with
63 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
-- | ||
-- (c) 2024 Siveo, http://siveo.net/ | ||
-- | ||
-- $Id$ | ||
-- | ||
-- This file is part of Pulse 2, http://siveo.net | ||
-- | ||
-- Pulse 2 is free software; you can redistribute it and/or modify | ||
-- it under the terms of the GNU General Public License as published by | ||
-- the Free Software Foundation; either version 2 of the License, or | ||
-- (at your option) any later version. | ||
-- | ||
-- Pulse 2 is distributed in the hope that it will be useful, | ||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
-- GNU General Public License for more details. | ||
-- | ||
-- You should have received a copy of the GNU General Public License | ||
-- along with Pulse 2; if not, write to the Free Software | ||
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
-- MA 02110-1301, USA. | ||
|
||
-- ---------------------------------------------------------------------- | ||
-- Database version | ||
-- ---------------------------------------------------------------------- | ||
|
||
-- be sure to use the right database | ||
use pkgs; | ||
|
||
START TRANSACTION; | ||
|
||
UPDATE extensions SET `file`="", strings="Nullsoft" WHERE rule_name="Nullsoft Rule"; | ||
UPDATE version SET Number = 9; | ||
COMMIT; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters