Skip to content

Commit

Permalink
Fix a bug during buildAgent -d on Debian like systems
Browse files Browse the repository at this point in the history
  • Loading branch information
primalmotion committed Feb 15, 2013
1 parent 5d65f9c commit 8c904d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ArchipelAgent/buildAgent
Expand Up @@ -116,7 +116,7 @@ def install_dev(package_paths):
"""
for package_path in package_paths:
os.chdir(package_path)
if os.system("python setup.py develop --no-deps &>> %s" % LOG_PATH) == 0:
if os.system("python setup.py develop --no-deps") == 0:
success("EGG package %s installed in developer mode" % os.path.basename(package_path))
else:
error("Unable to install EGG package %s in developer mode" % os.path.basename(package_path))
Expand Down Expand Up @@ -448,4 +448,4 @@ if __name__ == "__main__":
msg("All action performed")

if options.livecd:
build_live_cd()
build_live_cd()

0 comments on commit 8c904d4

Please sign in to comment.