From 04c7707c169ef8afe24cbcbc643bbf3862094386 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Wed, 10 Sep 2003 03:25:58 +0000 Subject: [PATCH] Add output, remove noisy output. --- stepmania/PBProject/Installer/BuildInstaller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/PBProject/Installer/BuildInstaller.cpp b/stepmania/PBProject/Installer/BuildInstaller.cpp index fd90dd52c8..08bbd29666 100644 --- a/stepmania/PBProject/Installer/BuildInstaller.cpp +++ b/stepmania/PBProject/Installer/BuildInstaller.cpp @@ -34,8 +34,6 @@ void HandleFile(const CString& file, const CString& dir, const CString& archiveP command += archivePath + "' '" + dir +"' '" + file + "'"; system(command); - - printf("%s\n", file.c_str()); } const CString GetPath(const CString& ID) @@ -126,6 +124,8 @@ int main(int argc, char *argv[]) while (nextLine < config.GetNumLines()) p.ProcessLine(config.GetLine(nextLine), nextLine); + printf("Compressing the archive.\n"); + /* Compress the archive after it is created */ command = "gzip '" + archivePath + "'"; system(command);