diff options
author | kanzure <kanzure@gmail.com> | 2009-11-30 19:58:04 -0600 |
---|---|---|
committer | kanzure <kanzure@gmail.com> | 2009-11-30 19:58:04 -0600 |
commit | b20d9a78351dea571260e23581e2f1c5e00422cf (patch) | |
tree | be724ba833553f70c3dbf6c974d9cc6eea14bb80 | |
parent | 685dd5fe389f9ee9f213b19fb6fb3a123f3610d8 (diff) | |
download | skdb-b20d9a78351dea571260e23581e2f1c5e00422cf.tar.gz skdb-b20d9a78351dea571260e23581e2f1c5e00422cf.zip |
fixed permission problem leftovers from skdb-get.py
-rwxr-xr-x | clients/skdb-get.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/skdb-get.py b/clients/skdb-get.py index e81ba15..1678d58 100755 --- a/clients/skdb-get.py +++ b/clients/skdb-get.py @@ -47,7 +47,7 @@ def get_package(package_name, verbose=False, repo=settings.paths["SKDB_PACKAGE_R os.system("mkdir -p \"%s\"" % (package_dir)) #this is kinda custom for the moment - command = "cd \"%s\"; git clone \"%s\";" % (package_dir, package_url) + command = "cd \"%s\"; git clone \"%s\"; chmod -R a+rw *" % (package_dir, package_url) print "command is: ", command os.system(command) return |