diff --git a/src/Globals.hpp b/src/Globals.hpp index a2b66e8..6c1af4f 100644 --- a/src/Globals.hpp +++ b/src/Globals.hpp @@ -4,7 +4,7 @@ #include using namespace std; -const string VERSION = "1.0"; +const string VERSION = "1.1"; const string USAGE = " "; #endif \ No newline at end of file diff --git a/src/Main.cpp b/src/Main.cpp index 3a49661..5a1cc69 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -18,7 +18,10 @@ int main(int argc, char** argv) // Instantiate our extractor Extractor ext(argv[1]); if (!ext.IsReady()) + { + cerr << "Extractor initialization failed, aborting." << endl; return EXIT_FAILURE; + } // Extract files, check for error if (ext.ExtractFiles() == -1)