--- a/conf/config.py.tmpl Wed Jun 19 18:50:09 2013 +0200
+++ b/conf/config.py.tmpl Thu Jun 20 11:14:12 2013 +0200
@@ -27,17 +27,6 @@
"P .htaccess",
"P egonomy/config.py",
],
- 'web': [
- "+ core",
- "P .htpasswd",
- "P .htaccess",
- "P robots.txt",
- "P env/***",
- "P log/***",
- "P index/***",
- "P static/media/***",
- "P crossdomain.xml",
- ],
'venv': [
"+ core",
]
--- a/src/fablib/core.py Wed Jun 19 18:50:09 2013 +0200
+++ b/src/fablib/core.py Thu Jun 20 11:14:12 2013 +0200
@@ -125,7 +125,7 @@
print("get src version for %s at %s" % (key,path))
- mod_name = env.repos[key].get('module', key)
+ mod_name = env.repos[key].get('module', key) or key
f = None
sys.path.append(path)
@@ -265,9 +265,6 @@
def do_sync_web(version, export_path):
print("do_sync_web with version %s and path %s" % (version,export_path))
- #sync web
- web_path = os.path.join(export_path,"web/")
- rsync_export(web_path, env.remote_path['web'], env.rsync_filters['web'])
#sync src
src_path = os.path.join(export_path,"src/")
rsync_export(src_path, env.remote_path['src'], env.rsync_filters['src'])