Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/auriamg/macdylibbundler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSCG82 <scg082+github@gmail.com>2021-11-07 11:29:48 +0300
committerSCG82 <scg082+github@gmail.com>2021-11-07 11:29:48 +0300
commit8240de1fa21425f7f54032facfdc23ac21048bed (patch)
treeb6e019e02436abd487023f96e9f2bcf384cb81c0
parentdf2b64fa677205e8dabe7846cfcdcdce2a924f16 (diff)
Remove 'exit(1)' on fixRpathsOnFile error
-rw-r--r--src/DylibBundler.cpp1
-rw-r--r--src/main.cpp2
2 files changed, 1 insertions, 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?)