We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b8a336 commit 076ab8aCopy full SHA for 076ab8a
code2pg
@@ -66,7 +66,7 @@ my %LANGUAGE_COMMENTS_END = (
66
);
67
68
my %REGEX_SEARCH; # how we identify keywords
69
-$RGEX_SEARCH{'plain'}{'before'} = ''; # directly as in sql files
+$REGEX_SEARCH{'plain'}{'before'} = ''; # directly as in sql files
70
$REGEX_SEARCH{'plain'}{'after'} = '';
71
$REGEX_SEARCH{'tags'}{'before'} = '>(?s:.*?)'; # inside <tag> SQL STRING <tag>
72
$REGEX_SEARCH{'tags'}{'after'} = '(?s:.*?)<';
@@ -3473,7 +3473,8 @@ sub main {
3473
3474
# Sed is adding ^M on the files I tried. We remove them.
3475
if ( $modified_file == 1 ) {
3476
- my $sed_res = `sed -i 's///g' "$file"`;
+ my $sed_res = `sed -i 's/
3477
+//g' "$file"`;
3478
}
3479
3480
print "\rDone ! \n" if (!$quiet_exec);
0 commit comments