aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-10-02 00:14:34 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-10-02 00:14:34 -0400
commitb0d463430e95bb01cc92e3584156cf8a152d2918 (patch)
tree44666a55a0d89f397ab4fba7681b88603d453914
parent53e5ea9db8e4b6b40cd16835ef80b9ba11dc109d (diff)
downloadcbc-b0d463430e95bb01cc92e3584156cf8a152d2918.tar.gz
Fix pointing to wrong variable
-rw-r--r--cbc/cli/recipe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cbc/cli/recipe.py b/cbc/cli/recipe.py
index 8fabe2f..9b8ac6a 100644
--- a/cbc/cli/recipe.py
+++ b/cbc/cli/recipe.py
@@ -72,7 +72,7 @@ if errorlevel 1 exit 1
if not METAPACKAGE:
config['source'] = {}
config['source']['fn'] = '${package:name}-${package:version}.tar.gz'
- config['source']['url'] = '${package:home}/${fn}'
+ config['source']['url'] = '${about:home}/${fn}'
if args.use_git:
config['source']['git_url'] = ''
config['source']['git_tag'] = ''