From d0de0a246df2608d786e17b4b3438ecbfb5fcbf0 Mon Sep 17 00:00:00 2001 From: kramm Date: Thu, 19 Jun 2008 20:29:19 +0000 Subject: [PATCH] remove installation directory in batch file, too --- installer/installer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/installer.c b/installer/installer.c index 3573858..439fc2f 100644 --- a/installer/installer.c +++ b/installer/installer.c @@ -807,6 +807,7 @@ static void remove_self() fprintf(fp, "del \"%s\"\n", exename); fprintf(fp, "if exist \"%s\" goto Repeat\n", exename); fprintf(fp, "del \"%s\"\n", batname); + fprintf(fp, "rmdir \"%s\"\n", install_path); fclose(fp); STARTUPINFO si; -- 1.7.10.4