@xuda.io/drive_module 1.1.1060 → 1.1.1062
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2103,7 +2103,7 @@ exports.compile_javascript_program_in_studio_drive = async function (
|
|
|
2103
2103
|
) {
|
|
2104
2104
|
const { app_id, prog_id } = req;
|
|
2105
2105
|
try {
|
|
2106
|
-
|
|
2106
|
+
let { data: doc } = await db_module.get_app_couch_doc(app_id, prog_id);
|
|
2107
2107
|
|
|
2108
2108
|
const studio_drive_script_folder = path.join(
|
|
2109
2109
|
_conf.studio_drive_path,
|
|
@@ -2296,6 +2296,9 @@ export default {
|
|
|
2296
2296
|
);
|
|
2297
2297
|
|
|
2298
2298
|
//////////////////////
|
|
2299
|
+
|
|
2300
|
+
misc_module.rsync_drive_resources_to_remote_servers("studio", app_id);
|
|
2301
|
+
/////////////////////
|
|
2299
2302
|
doc.vite_build_res = {
|
|
2300
2303
|
code: 1,
|
|
2301
2304
|
data: build_ret,
|