9 lines
427 B
Makefile
9 lines
427 B
Makefile
|
|
IMAGE_DEPS := $(IMAGE_DEPS) \
|
||
|
|
app/instance-control/webhook_secret \
|
||
|
|
app/instance-control/hooks/hooks.json
|
||
|
|
|
||
|
|
app/instance-control/webhook_secret: $(apps_config)
|
||
|
|
bash -c 'source $(apps_config); printf "%s\n" "$$INSTANCE_CONTROL_WEBHOOKS_SECRET" > $@'
|
||
|
|
app/instance-control/hooks/hooks.json: $(apps_config) app/instance-control/make-instance-control-config.sh
|
||
|
|
./app/instance-control/make-instance-control-config.sh $(apps_config)
|