chore(unitproc):appendFileTar:Minor comment
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Fri, 10 Jul 2020 20:33:04 +0000 (20:33 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Fri, 10 Jul 2020 20:33:04 +0000 (20:33 +0000)
unitproc/bktemp-appendFileTar

index e0bccbb117acc627de4bc80d2c78ad36a0c2af74..04cda7ca4fc3eb612ebc16848946d7b064b2ae89 100644 (file)
@@ -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";