aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/utility.cxx')
-rw-r--r--bpkg/utility.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index 206b358..98b5125 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -68,8 +68,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- error << "unable to stat path " << f << ": " << e.what ();
- throw failed ();
+ fail << "unable to stat path " << f << ": " << e.what () << endf;
}
}
@@ -82,8 +81,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- error << "unable to stat path " << d << ": " << e.what ();
- throw failed ();
+ fail << "unable to stat path " << d << ": " << e.what () << endf;
}
}
@@ -96,8 +94,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- error << "unable to scan directory " << d << ": " << e.what ();
- throw failed ();
+ fail << "unable to scan directory " << d << ": " << e.what () << endf;
}
}