summaryrefslogtreecommitdiffstats
path: root/quickstart/README
diff options
context:
space:
mode:
Diffstat (limited to 'quickstart/README')
-rw-r--r--quickstart/README4
1 files changed, 3 insertions, 1 deletions
diff --git a/quickstart/README b/quickstart/README
index bfd57ee..baa9d4f 100644
--- a/quickstart/README
+++ b/quickstart/README
@@ -5,7 +5,9 @@ When using this subdir as a start point for a new project, follow this:
$ ONTOGENREPO=git://fedorapeople.org/home/fedora/jpokorny/public_git/ontogen.git
$ PREFIX=$(basename $(pwd))
$ git submodule add "${ONTOGENREPO}"
-$ for f in Makefile .gitignore; do ln -s {ontogen/quickstart/,}$f; done
+$ WHAT="Makefile .gitignore"
+$ # WHAT+=" .htaccess"
+$ for f in ${WHAT}; do ln -s {ontogen/quickstart/,}$f; done
$ cat ontogen/quickstart/template.py \
| sed "s|template|${PREFIX}|g" \
> ${PREFIX}.py