summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-04-17 18:30:02 +0200
committerJan Pokorný <jpokorny@redhat.com>2013-04-17 18:30:02 +0200
commit748e6fd8220d93b7758f71a7d1be22cefb3424a1 (patch)
tree576c3becf8011f1358ee7d185bc1d237697bae12
parent3d15b3a6a6fc814722458d64580e39630ba055fb (diff)
downloadontogen-748e6fd8220d93b7758f71a7d1be22cefb3424a1.tar.gz
ontogen-748e6fd8220d93b7758f71a7d1be22cefb3424a1.tar.xz
ontogen-748e6fd8220d93b7758f71a7d1be22cefb3424a1.zip
quickstart: state .htaccess inclusion as a possibility
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
-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