Skip to content

Commit

Permalink
Update download to target official github repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Mar 24, 2015
1 parent 50ece99 commit 7c69bf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions planemo/galaxy_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def config_join(*args):
latest_galaxy = False
if _install_galaxy_if_needed(config_directory, kwds):
latest_galaxy = True
galaxy_root = config_join("galaxy-central-master")
galaxy_root = config_join("galaxy-dev")

_handle_dependency_resolution(config_directory, kwds)
_handle_job_metrics(config_directory, kwds)
Expand Down Expand Up @@ -322,7 +322,7 @@ def _install_galaxy_via_download(config_directory, kwds):
"cd %s" % config_directory,
galaxy_run.DOWNLOAD_GALAXY,
"tar -zxvf master | tail",
"cd galaxy-central-master",
"cd galaxy-dev",
"type virtualenv >/dev/null 2>&1 && virtualenv .venv",
galaxy_run.ACTIVATE_COMMAND,
]
Expand Down
2 changes: 1 addition & 1 deletion planemo/galaxy_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# TODO: Mac-y curl variant of this.
DOWNLOAD_GALAXY = (
"wget https://codeload.github.com/jmchilton/galaxy-central/tar.gz/master"
"wget https://codeload.github.com/galaxyproject/galaxy/tar.gz/dev"
)


Expand Down

0 comments on commit 7c69bf6

Please sign in to comment.