CLI2: Added note about path exclusion

This commit is contained in:
Paul Beckingham 2015-07-06 16:03:24 -04:00
parent 4bdfde4aa4
commit abaf326855

View file

@ -161,6 +161,9 @@ void A2::decompose ()
{
std::string raw = _attributes["raw"];
//if (Directory (raw).exists ())
// return;
auto slash1 = raw.find ("/");
auto slash2 = raw.find ("/", slash1 + 1);
auto slash3 = raw.find ("/", slash2 + 1);