aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-20 21:53:17 +0700
committerEverythingWindows <[email protected]>2022-11-20 21:53:17 +0700
commit3f4edf1b79ee4ee5a73251930af641bcd0db225e (patch)
treec018dad0d65e9997867f951df94ef907ea18956c /ShiftOS-TheRevival/TerminalApplications/Internal
parent9d384be17594240918b6b277521d3eaa15151ae9 (diff)
downloadshiftos-therevival-old-3f4edf1b79ee4ee5a73251930af641bcd0db225e.tar.gz
shiftos-therevival-old-3f4edf1b79ee4ee5a73251930af641bcd0db225e.tar.bz2
shiftos-therevival-old-3f4edf1b79ee4ee5a73251930af641bcd0db225e.zip
trial on Dual Window Manager
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal')
-rw-r--r--ShiftOS-TheRevival/TerminalApplications/Internal/Com_Unzip.vb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Unzip.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Unzip.vb
index 37231fb..09be14b 100644
--- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Unzip.vb
+++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Unzip.vb
@@ -84,7 +84,7 @@ Module Com_Unzip
' copy all the sub-directories by recursively calling this same routine
Dim SubDir As DirectoryInfo
For Each SubDir In SourceDir.GetDirectories()
- NewLine("Copying " & SubDir.Name & "...")
+ NewLine("Copying '" & SubDir.Name & "' directory ...")
CopyDirectory(SubDir.FullName, Path.Combine(DestDir.FullName,
SubDir.Name), Overwrite)
AddLine(" OK")