summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glustolibs-gluster/setup.py7
-rw-r--r--glustolibs-io/setup.py8
2 files changed, 11 insertions, 4 deletions
diff --git a/glustolibs-gluster/setup.py b/glustolibs-gluster/setup.py
index 005571b83..b4b1cf170 100644
--- a/glustolibs-gluster/setup.py
+++ b/glustolibs-gluster/setup.py
@@ -19,7 +19,7 @@
from setuptools import setup, find_packages
from distutils import dir_util
-version = '0.21'
+version = '0.22'
name = 'glustolibs-gluster'
setup(
@@ -48,4 +48,7 @@ setup(
namespace_packages = ['glustolibs']
)
-dir_util.copy_tree('./gdeploy_configs', '/usr/share/glustolibs/gdeploy_configs')
+try:
+ dir_util.copy_tree('./gdeploy_configs', '/usr/share/glustolibs/gdeploy_configs')
+except:
+ pass
diff --git a/glustolibs-io/setup.py b/glustolibs-io/setup.py
index 810ddc5dd..41655dad6 100644
--- a/glustolibs-io/setup.py
+++ b/glustolibs-io/setup.py
@@ -19,7 +19,7 @@ import os
from setuptools import setup, find_packages
from distutils import dir_util
-version = '0.1.1'
+version = '0.1.2'
name = 'glustolibs-io'
setup(
@@ -47,4 +47,8 @@ setup(
dependency_links=['http://github.com/loadtheaccumulator/glusto/tarball/master#egg=glusto'],
namespace_packages = ['glustolibs']
)
-dir_util.copy_tree('./shared_files', '/usr/share/glustolibs/io')
+
+try:
+ dir_util.copy_tree('./shared_files', '/usr/share/glustolibs/io')
+except:
+ pass