summaryrefslogtreecommitdiffhomepage
path: root/cli
diff options
context:
space:
mode:
authorAmlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com>2024-10-31 09:07:51 +0100
committerGitHub <noreply@github.com>2024-10-31 09:07:51 +0100
commitb8074a0ce73e8f483c0101ce83d7107bf93221a0 (patch)
tree26980b96ca21a2bc76ee4ac39f5121bc126e8254 /cli
parenta6c14f5ab80ab06b002bc901c3485f39e65d5899 (diff)
IMP: Don't return -1 when erroring.
Diffstat (limited to 'cli')
-rw-r--r--cli/ManifestBuilder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ManifestBuilder.cc b/cli/ManifestBuilder.cc
index d58f211..359a974 100644
--- a/cli/ManifestBuilder.cc
+++ b/cli/ManifestBuilder.cc
@@ -12,7 +12,7 @@ static bool kDryRun = false;
int main(int argc, char** argv)
{
if (argc <= 1)
- return -1;
+ return 1;
for (size_t index = 1; index < argc; ++index)
{