Removed exceptions

This commit is contained in:
Jack Andersen
2015-07-25 16:44:44 -10:00
parent 9e7e0979bd
commit 7fafe3ce0c
8 changed files with 36 additions and 36 deletions

View File

@@ -52,7 +52,8 @@ int main(int argc, char* argv[])
if (!dataPart)
return -1;
dataPart->extractToDirectory(outDir, force);
if (!dataPart->extractToDirectory(outDir, force))
return -1;
}
else if (!strcasecmp(argv[1], _S("make")))
{