From d71f73881c637e82e472b64faa7d20f71d487dad Mon Sep 17 00:00:00 2001 From: Alvaro Graves <alvaro@graves.cl> Date: Wed, 27 Jul 2011 12:42:21 -0700 Subject: [PATCH] fix install.sh --- README | 10 ++++++++-- example.ttl | 2 +- install.sh | 5 +++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README b/README index 8fc3c77a..b6cf296c 100644 --- a/README +++ b/README @@ -2,8 +2,14 @@ slodps - Simple Linked Open Data Publishing System author: Alvaro Graves (alvaro@graves.cl) version: 20110717 -Installation ------------- +Simple Installation +------------------- + +* Download the source or clone the repository from http://github.com/alangrafu/slodps +* Inside slodps, run ./install.sh + +Manual Installation +-------------------- * Download the source or clone the repository from http://github.com/alangrafu/slodps diff --git a/example.ttl b/example.ttl index be63f747..144899e1 100644 --- a/example.ttl +++ b/example.ttl @@ -1,4 +1,4 @@ -@prefix : <http://shai-hulud/testCMS/> . +@prefix : <http://changeToYouOwnSite.com/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix dcterms: <http://purl.org/dc/terms/> . diff --git a/install.sh b/install.sh index 839bf408..c7764152 100755 --- a/install.sh +++ b/install.sh @@ -20,10 +20,11 @@ if [ -e "$parent_htaccess" ] then echo ".htaccess file found in parent directory." echo "Please remove it or add the content of $root_htaccess in it" - exit(0) + exit fi -echo "Copying $root_htaccess as .htacess in parent directory" +echo "WARNING: Copying $root_htaccess as .htacess in parent directory" +echo "" cp $root_htaccess $parent_htaccess while [ "$everything_ok" != "y" ] -- GitLab