CC-2758: Make airtime-install script Debian/Ubuntu compatible

-cosmetic changes
This commit is contained in:
martin 2011-11-01 15:21:09 -04:00
parent d2f4e55dd6
commit f2ef006385
17 changed files with 67 additions and 51 deletions

View file

@ -10,7 +10,7 @@ def copy_dir(src_dir, dest_dir):
if (os.path.exists(dest_dir)) and (dest_dir != "/"):
shutil.rmtree(dest_dir)
if not (os.path.exists(dest_dir)):
print "Copying directory "+os.path.realpath(src_dir)+" to "+os.path.realpath(dest_dir)
#print "Copying directory "+os.path.realpath(src_dir)+" to "+os.path.realpath(dest_dir)
shutil.copytree(src_dir, dest_dir)
current_script_dir = get_current_script_dir()

View file

@ -17,5 +17,5 @@ except Exception, e:
print 'Error loading config file: ', e
sys.exit(1)
print "Removing API Client files"
print " * Removing API Client files"
remove_path(config["bin_dir"])