Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Bug 804886 - Allow setup_development.py to be run from any directory. r=jhammel #37

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup_development.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def main(args=sys.argv[1:]):
if i not in unrolled]) if i not in unrolled])
for package, version in pypi_deps.items(): for package, version in pypi_deps.items():
# easy_install should be available since we rely on setuptools # easy_install should be available since we rely on setuptools
call(['easy_install', version]) call(['easy_install', version], cwd=here)


# set up the packages for development # set up the packages for development
for package in unrolled: for package in unrolled:
Expand Down