]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-setup: mkdir and then copy recursively vs. using mv 510/head
authorAlfredo Deza <adeza@redhat.com>
Wed, 5 Oct 2016 16:08:36 +0000 (12:08 -0400)
committerAlfredo Deza <adeza@redhat.com>
Wed, 5 Oct 2016 16:08:36 +0000 (12:08 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
ceph-setup/build/build

index ad4a813e1e0c36284abc09b93c65a4368b290e35..4c567239006a683d7f136819fe733127ed5190ca 100644 (file)
@@ -162,7 +162,8 @@ vers=`cat release/version`
 
 (
     cd release/$vers
-    mv debian ceph-$vers/.
+    mkdir -p ceph-$vers/debian
+    cp -r debian/* ceph-$vers/debian/
     dpkg-source -b ceph-$vers
 )