tsv2ics: fix syntax typo in source code - ics2txt - convert icalendar .ics file to plain text
(HTM) git clone git://bitreich.org/ics2txt git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ics2txt
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
---
(DIR) commit 599d47ef952d535e775263772cfbbbe9a2704971
(DIR) parent 249ca0bca49471576785d34c208a78f672d7d245
(HTM) Author: Josuah Demangeon <me@josuah.net>
Date: Mon, 21 Jun 2021 22:54:00 +0200
tsv2ics: fix syntax typo in source code
Diffstat:
M tsv2ics.awk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/tsv2ics.awk b/tsv2ics.awk
@@ -67,7 +67,7 @@ BEGIN {
NR == 1 {
if ($1 != "TYPE" || $2 != "START" || $3 != "END" || $4 != "RECUR") {
- print "tsv2ics: invalid column names on first line" >/dev/stderr
+ print "tsv2ics: invalid column names on first line" >"/dev/stderr"
exit(EXIT = 1)
}
for (i = 1; i <= NF; i++) {