summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 31d559d..b6dea21 100644
--- a/src/main.c
+++ b/src/main.c
@@ -341,7 +341,7 @@ find_dot_file(char *basename)
 int
 dotcmd(int argc, char **argv)
 {
-	exitstatus = 0;
+	int status = 0;
 
 	if (argc >= 2) {		/* That's what SVR2 does */
 		char *fullname;
@@ -351,8 +351,9 @@ dotcmd(int argc, char **argv)
 		commandname = fullname;
 		cmdloop(0);
 		popfile();
+		status = exitstatus;
 	}
-	return exitstatus;
+	return status;
 }
 
 
ef='/src/commit/.config/git/config?id=77ce639aff1bf7f74e397bceaa89b0bca933903d&follow=1'>Add git config override includeJune McEnroe 2016-04-06Simplify install scriptJune McEnroe 2016-04-06Add gpg-agent to READMEJune McEnroe 2016-04-06Always sign git commitsJune McEnroe 2016-04-06Use standard socket for gpg-agentJune McEnroe 2016-04-06Set iTerm font to PointfreeJune McEnroe