File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ my %LANGUAGE_COMMENTS_END = (
66
66
);
67
67
68
68
my %REGEX_SEARCH; # how we identify keywords
69
- $RGEX_SEARCH {'plain'}{'before'} = ''; # directly as in sql files
69
+ $REGEX_SEARCH {'plain'}{'before'} = ''; # directly as in sql files
70
70
$REGEX_SEARCH{'plain'}{'after'} = '';
71
71
$REGEX_SEARCH{'tags'}{'before'} = '>(?s:.*?)'; # inside <tag> SQL STRING <tag>
72
72
$REGEX_SEARCH{'tags'}{'after'} = '(?s:.*?)<';
@@ -3473,7 +3473,8 @@ sub main {
3473
3473
3474
3474
# Sed is adding ^M on the files I tried. We remove them.
3475
3475
if ( $modified_file == 1 ) {
3476
- my $sed_res = `sed -i 's///g' "$file"`;
3476
+ my $sed_res = `sed -i 's/
3477
+ //g' "$file"`;
3477
3478
}
3478
3479
}
3479
3480
print "\rDone ! \n" if (!$quiet_exec);
You can’t perform that action at this time.
0 commit comments