From 965b95448936de60f68e6fa9c5ab76bd271c0446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomi=20Lepp=C3=A4nen?= Date: Mon, 25 May 2026 14:40:51 +0300 Subject: [PATCH] Improve create-bundle.sh to allow arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Give any extra arguments to jekyll and use exec to leave the shell as we don't need it afterwards. This is mainly to let me use --incremental for faster build times. Signed-off-by: Tomi Leppänen --- create-bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-bundle.sh b/create-bundle.sh index 502cb739..29ad2b47 100755 --- a/create-bundle.sh +++ b/create-bundle.sh @@ -1,4 +1,4 @@ #!/bin/bash bundle config set --local path 'vendor/bundle' bundle install -bundle exec jekyll serve +exec bundle exec jekyll serve $@