From f963af5e1367294c0c9bdf4897e8ee373806f135 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 4 Oct 2021 11:00:59 +0200 Subject: [PATCH] =?UTF-8?q?Update=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 1 - refresh.sh | 9 +++++---- 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 public/index.html diff --git a/public/index.html b/public/index.html deleted file mode 100644 index cd08755..0000000 --- a/public/index.html +++ /dev/null @@ -1 +0,0 @@ -Hello world! diff --git a/refresh.sh b/refresh.sh index 9036dda..0d25298 100755 --- a/refresh.sh +++ b/refresh.sh @@ -2,7 +2,7 @@ wai=$(dirname $(readlink -f "$0")) # Current script directory projects_dir=${wai}/projects -www_dir=${wai}/public +www_dir=${wai}/public/ projects_out_dir=${www_dir}/projects/ template_file=${wai}/template.html @@ -31,13 +31,14 @@ do name=$(basename $p) html=$projects_out_dir/$name/index.html js=$projects_out_dir/$name/index.js + js2=projects/$name/index.js page=${www_dir}/${name}.html - - # Create html echo $p + # Create html + echo $projects_out_dir cp -r $p $projects_out_dir/ cat $template_file |sed "/\${CONTENT}/r $html"|sed '/\${CONTENT}/d' > $page - sed -i "s#\${JS}#${js}#g" $page + sed -i "s#\${JS}#${js2}#g" $page sed -i "s#\${project_name}#${name}#g" $page # Add links