Skip to content
Snippets Groups Projects
Commit a5e3ac21 authored by Mark Palange (Mani)'s avatar Mark Palange (Mani)
Browse files

CHOP-187 Fixed linux updater return code to return 0 on success

parent 00187622
No related branches found
No related tags found
No related merge requests found
......@@ -824,7 +824,7 @@ int main(int argc, char **argv)
}
}
bool success = app_state->failure != FALSE;
bool success = !app_state->failure;
delete app_state;
return success ? 0 : 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment