Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

False positives in config files due to string escaping #84

Open
CreepPork opened this issue Oct 14, 2018 · 1 comment
Open

False positives in config files due to string escaping #84

CreepPork opened this issue Oct 14, 2018 · 1 comment

Comments

@CreepPork
Copy link

CreepPork commented Oct 14, 2018

Several Arma "escaped" strings do not count as escaped strings. But some of these strings have no other way to be properly escaped and work in Arma. See examples below:

AresDisplays = "\achilles\ui_f\scripts\";

These double qoutes also break armake. The false positive is indicated by the above line (it was included in the next file)

onSetFocus = "[_this,""RscAttributeRank"",'AresDisplays'] call (uinamespace getvariable ""Achilles_fnc_initCuratorAttribute"")";

After further playing around one way to bypass the issue is to use no quotes at all. This works in armake and Arma.

AresDisplays = \achilles\ui_f\scripts\;
@dedmen
Copy link
Contributor

dedmen commented Nov 20, 2018

Fixed in #90

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants