diff options
Diffstat (limited to 'bpkg/manifest.cxx')
-rw-r--r-- | bpkg/manifest.cxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/bpkg/manifest.cxx b/bpkg/manifest.cxx index 1034fe3..1ab9c72 100644 --- a/bpkg/manifest.cxx +++ b/bpkg/manifest.cxx @@ -1111,19 +1111,19 @@ namespace bpkg if (n == "location") { - if (!v.empty ()) + if (v.empty ()) + bad_value ("empty location"); + + try { - try - { - // Call prerequisite repository location constructor, do not - // ammend relative path. - // - location = repository_location (move (v), repository_location ()); - } - catch (const invalid_argument& e) - { - bad_value (e.what ()); - } + // Call prerequisite repository location constructor, do not + // ammend relative path. + // + location = repository_location (move (v), repository_location ()); + } + catch (const invalid_argument& e) + { + bad_value (e.what ()); } } else |