From 64019e5fba6d33a8c310607ae0530ad591ec4956 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 2 Jul 2023 17:32:51 +0200 Subject: [PATCH] feat: with rhai Signed-off-by: kjuulh --- cuddle.yaml | 4 +++- scripts/test.rhai | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 scripts/test.rhai diff --git a/cuddle.yaml b/cuddle.yaml index 8c866f3..5d6683f 100644 --- a/cuddle.yaml +++ b/cuddle.yaml @@ -26,6 +26,8 @@ scripts: key: "name" "sqlx:prepare": type: shell - "deploy": type: shell + "test": + type: "rhai" + description: "something" diff --git a/scripts/test.rhai b/scripts/test.rhai new file mode 100644 index 0000000..cc4e55e --- /dev/null +++ b/scripts/test.rhai @@ -0,0 +1 @@ +print("hello, world!");