From 60a186e8394aec091991c54f4d1ce1a5ac0021f8 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Fri, 10 Jul 2020 20:33:04 +0000 Subject: [PATCH] chore(unitproc):appendFileTar:Minor comment --- unitproc/bktemp-appendFileTar | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unitproc/bktemp-appendFileTar b/unitproc/bktemp-appendFileTar index e0bccbb..04cda7c 100644 --- a/unitproc/bktemp-appendFileTar +++ b/unitproc/bktemp-appendFileTar @@ -7,7 +7,7 @@ try() { "$@" || die "cannot $*"; } appendFileTar(){ # Desc: Appends [processed] file to tar # Usage: appendFileTar [file path] [name of file to be inserted] [tar path] [temp dir] ([process cmd]) - # Version: 2.0.0 + # Version: 2.0.1 # Input: arg1: path of file to be (processed and) written # arg2: name to use for file inserted into tar # arg3: tar archive path (must exist first) @@ -43,7 +43,7 @@ appendFileTar(){ # Append to tar try tar --append --directory="$tmpDir" --file="$tarPath" "$fileName"; #yell "DEBUG:STATUS:$fn:Finished appendFileTar()." -} # Append file to Tar archive +} # Append [processed] file to Tar archive #==BEGIN sample code== myTar="/tmp/$(date +%s).tar"; -- 2.30.2