summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2021-02-15 18:40:54 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2021-02-15 18:41:07 +0100
commit0aff71b7cf87a046a4f731cdfec69a449177318c (patch)
tree7fea6b3da7f7d7c9abc73658e53c91af3e64b681 /build.sh
parent2eeda668db31cea1d47ca45907b839d6b0f5f2b9 (diff)
downloadquatuorbellefeuille.com-0aff71b7cf87a046a4f731cdfec69a449177318c.tar.xz
Make parameter script mandatory
All pages were using it anyway.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/build.sh b/build.sh
index ee479de..74e9ab8 100755
--- a/build.sh
+++ b/build.sh
@@ -3,15 +3,8 @@
set -eu
input=$1
-output=$2
-
-parameters=${input/%.html/.sh}
-
-if ! test -f ${parameters}
-then
- cp ${input} ${output}
- exit
-fi
+parameters=$2
+output=$3
cp template.html ${output}