Skip to content
Snippets Groups Projects
Commit 43380038 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

MNT: allow repository/git revision overrides for development

parent 94cc2ff3
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,11 @@ package:
version: {{ version }}
source:
git_url: {{ repository }}
git_rev: {{ version }}
# the FSLCONDA_REPOSITORY and FSLCONDA_REVISION
# environment variables can be used to override
# the repository/revision for development purposes.
git_url: {{ os.environ.get("FSLCONDA_REPOSITORY", repository) }}
git_rev: {{ os.environ.get("FSLCONDA_REVISION", version) }}
git_depth: 1
build:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment