From 1515498a233fcf417128896ca17ef1cbbffe59f4 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 6 Aug 2024 10:46:37 +0200 Subject: [PATCH] :bug: Fix storybook build --- frontend/scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/scripts/build b/frontend/scripts/build index 60d685fd2..97199d20d 100755 --- a/frontend/scripts/build +++ b/frontend/scripts/build @@ -30,7 +30,7 @@ rsync -avr resources/public/ target/dist/ sed -i -re "s/\%version\%/$CURRENT_VERSION/g" ./target/dist/index.html; sed -i -re "s/\%buildDate\%/$BUILD_DATE/g" ./target/dist/index.html; -if [ "$INCLUDE_STORYBOOK" = "yes"]; then +if [ "$INCLUDE_STORYBOOK" = "yes" ]; then # build storybook yarn run build:storybook || exit 1; rsync -avr storybook-static/ target/dist/storybook-static;