From eb18854e4027d913e9bbc808994b8a00d7f21c26 Mon Sep 17 00:00:00 2001 From: enjoyeetime Date: Sun, 29 Jan 2023 12:30:57 +0800 Subject: [PATCH] update --- JD.js | 5 ++++- _LSP.js | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/JD.js b/JD.js index cb70534..a048fe0 100644 --- a/JD.js +++ b/JD.js @@ -11,7 +11,10 @@ const isDev = false; const dependencyLSP = '20230129'; console.log(`开发环境 👉👉👉👉👉 ${isDev ? 'DEV' : 'RELEASE'}`); console.log(`----------------------------------------`); -const remoteRoot = 'https://gitcode.net/enoyee/scriptable/-/raw/master'; +// 分支 +const branch = 'dev'; +// 仓库根目录 +const remoteRoot = `https://gitcode.net/enoyee/scriptable/-/raw/${branch}`; // 依赖包目录 const fm = FileManager.local(); const rootDir = fm.documentsDirectory(); diff --git a/_LSP.js b/_LSP.js index af82fc5..5fbbea5 100644 --- a/_LSP.js +++ b/_LSP.js @@ -11,8 +11,10 @@ const VERSION = 20230129 // 组件配置文件名 const settingConfigName = 'settings.json'; +// 分支 +const branch = 'dev'; // 仓库根目录 -const remoteRoot = 'https://gitcode.net/enoyee/scriptable/-/raw/master'; +const remoteRoot = `https://gitcode.net/enoyee/scriptable/-/raw/${branch}`; // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- GitLab