aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conanfile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py
index ba12a10..533179f 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -1,4 +1,5 @@
from conans import ConanFile, CMake
+import shutil
class CrowConan(ConanFile):
name = "Crow"
@@ -11,6 +12,7 @@ class CrowConan(ConanFile):
def source(self):
# this will create a hello subfolder, take it into account
self.run("git clone https://github.com/javierjeronimo/crow.git")
+ shutil.move("crow/*", ".")
def build(self):
cmake = CMake(self.settings)