Skip to content

Commit 69c3279

Browse files
committed
[github] notifications: remove redundant 'use strict'
1 parent 01e6b69 commit 69c3279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/irc-notifications.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
# -------------------------------------
128128
echo "# script parse.pl"
129129
cat <<'EOS' > parse.pl
130-
use v5.14; use strict; use warnings;
130+
use v5.14; use warnings;
131131
my ( $key, $len ) = @ARGV;
132132
$key //= ''; $len //= 50;
133133
my $txt = substr( $ENV{$key} || "Unknown $key", 0, $len );
@@ -143,7 +143,7 @@ jobs:
143143
# -------------------------------------
144144
echo 'BODY<<EOS' >> $GITHUB_ENV
145145
perl parse.pl BODY 500 >> $GITHUB_ENV
146-
echo 'EOS' >> $GITHUB_ENV
146+
echo 'EOS' >> $GITHUB_ENV
147147
# -------------------------------------
148148
echo "# done"
149149

0 commit comments

Comments
 (0)