From f33cb12bdd5f81a395df7de1827aabdecbdaabfe Mon Sep 17 00:00:00 2001 From: xfy Date: Tue, 25 Feb 2025 15:14:31 +0800 Subject: [PATCH] add build script --- rua-scripts/linux/show-client-16.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rua-scripts/linux/show-client-16.sh diff --git a/rua-scripts/linux/show-client-16.sh b/rua-scripts/linux/show-client-16.sh new file mode 100644 index 0000000..29f4f3d --- /dev/null +++ b/rua-scripts/linux/show-client-16.sh @@ -0,0 +1,12 @@ +#!/bin/env bash + +# 16 staging +build_client_v3() { + fnm use && yarn && yarn build-showyun && scp -r -O build/* root@16:/home/wwwroot/editor_meta_showyun/ && + fnm use && yarn && yarn build-showyun-viewer-rel && scp -r -O build/* root@16:/home/wwwroot/design_meta_showyun/ +} + +build_client_v2() { + fnm use && yarn && yarn build-showyun && scp -r -O build/* root@16:/home/wwwroot/editor_showyun && + fnm use && yarn && yarn build-showyun-viewer-rel && scp -r -O build/* root@16:/home/wwwroot/design_showyun +}