diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-07 10:18:13 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-07 10:49:51 +0200 |
commit | 7e3f4c3d7996811a37393514d6f0eaacae7178e2 (patch) | |
tree | 976fecbf4d5fa82e5df05f418098ba8e653679ca | |
parent | 8d1ec4c5bc031da9e2441a63df965757d74d5c33 (diff) | |
download | apk-tools-7e3f4c3d7996811a37393514d6f0eaacae7178e2.tar.gz apk-tools-7e3f4c3d7996811a37393514d6f0eaacae7178e2.tar.bz2 apk-tools-7e3f4c3d7996811a37393514d6f0eaacae7178e2.tar.xz apk-tools-7e3f4c3d7996811a37393514d6f0eaacae7178e2.zip |
commit: return failure if there are any errors
fixes #4019
-rw-r--r-- | src/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit.c b/src/commit.c index 5b47d9e..4b9ea11 100644 --- a/src/commit.c +++ b/src/commit.c @@ -329,7 +329,7 @@ all_done: } } - return 0; + return errors; } enum { |