Fix build with newer version of cecil

This commit is contained in:
Nikias Bassen
2023-01-06 18:57:39 +01:00
parent 738c8d4d1f
commit 83e5802c16
+4 -4
View File
@@ -13,15 +13,15 @@ data/github:
watch: export CECIL_DEBUG=true
watch: composer.lock yarn.lock data/github
@rm -rf .cache && ./vendor/bin/cecil serve --config config.development.yml
@rm -rf .cache && ln -sf config.development.yml config.yml && ./vendor/bin/cecil serve
watch-production: export CECIL_DEBUG=false
watch-production: composer.lock yarn.lock data/github
@rm -rf .cache && ./vendor/bin/cecil serve --config config.production.yml
@rm -rf .cache && ln -sf config.production.yml config.yml && ./vendor/bin/cecil serve
development: export CECIL_DEBUG=true
development: composer.lock yarn.lock data/github
@rm -rf .cache && ./vendor/bin/cecil build --config config.$@.yml
@rm -rf .cache && ln -sf config.$@.yml config.yml && ./vendor/bin/cecil build
production: composer.lock yarn.lock data/github
@rm -rf .cache && ./vendor/bin/cecil build --config config.$@.yml
@rm -rf .cache && ln -sf config.$@.yml config.yml && ./vendor/bin/cecil build