Module Name:    src
Committed By:   christos
Date:           Sat Jan 27 15:53:58 UTC 2024

Modified Files:
        src/share/terminfo: import

Log Message:
fix quotes


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/terminfo/import

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/terminfo/import
diff -u src/share/terminfo/import:1.1 src/share/terminfo/import:1.2
--- src/share/terminfo/import:1.1	Wed Nov 27 14:00:25 2019
+++ src/share/terminfo/import	Sat Jan 27 10:53:57 2024
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: import,v 1.1 2019/11/27 19:00:25 christos Exp $
+# $NetBSD: import,v 1.2 2024/01/27 15:53:57 christos Exp $
 #
 # Simple shell script to import the newest version of terminfo
 # Download it from ftp://ftp.invisible-island.net/ncurses/current
@@ -18,7 +18,7 @@ tag=${input%%.src}
 vendor=NCURSES
 
 TMP=$(mktemp -d /tmp/import-terminfo)
-trap rm -fr "${TMP}" 0 1 2 15
+trap "rm -fr ${TMP}" 0 1 2 15
 
 cp "$1" "${TMP}/terminfo"
 cd "${TMP}"

Reply via email to