InjectionApp
InjectionApp copied to clipboard
"Learnt compile failed" if path to file contains "&"
Perhaps simple escaping this symbol will solve this issue.
I think I’ve tried to resolve this in the past and not found it so straightforward.
The relevant line is 229 in the injectSource.pl script bundle. You could try:
(my $escaped = $selectedFile) =~ s/([‘ &])/\\$1/g;