From 8240de1fa21425f7f54032facfdc23ac21048bed Mon Sep 17 00:00:00 2001 From: SCG82 Date: Sun, 7 Nov 2021 01:29:48 -0700 Subject: Remove 'exit(1)' on fixRpathsOnFile error --- src/DylibBundler.cpp | 1 - src/main.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/DylibBundler.cpp b/src/DylibBundler.cpp index e83f06c..6623e6a 100644 --- a/src/DylibBundler.cpp +++ b/src/DylibBundler.cpp @@ -207,7 +207,6 @@ void fixRpathsOnFile(const std::string& original_file, const std::string& file_t if ( systemp(command) != 0) { std::cerr << "\n\nError : An error occured while trying to fix dependencies of " << file_to_fix << std::endl; - exit(1); } } } diff --git a/src/main.cpp b/src/main.cpp index f045406..13ec125 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,7 +41,7 @@ THE SOFTWARE. */ -const std::string VERSION = "1.0.0"; +const std::string VERSION = "1.0.1"; // FIXME - no memory management is done at all (anyway the program closes immediately so who cares?) -- cgit v1.2.3