From abaf3268558533da07297071cd9e1835556baa9d Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 6 Jul 2015 16:03:24 -0400 Subject: [PATCH] CLI2: Added note about path exclusion --- src/CLI2.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 65b9617d2..12925e896 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -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);