diff --git a/GitGraph/build.json b/GitGraph/build.json index 315f04e..e6c775b 100644 --- a/GitGraph/build.json +++ b/GitGraph/build.json @@ -4,9 +4,8 @@ "clean": { "jobs": [ { - "name": "vfs-rm", - "data": ["build/debug","build/release"], - "ignore_error": true + "name": "vfs-rm_no_error", + "data": ["build/debug","build/release"] } ] }, diff --git a/libantosdk/build/debug/core/worker.js b/libantosdk/build/debug/core/worker.js index e3ffb67..874caa3 100644 --- a/libantosdk/build/debug/core/worker.js +++ b/libantosdk/build/debug/core/worker.js @@ -448,7 +448,7 @@ class VFSJob extends AntOSDKBaseJob { .then(d => this.result(d)) .catch((e) =>this.error(e)); break; - case 'rm-no-error': + case 'rm_no_error': this.delete(this.job.data) .then(d => this.result(d)) .catch((e) =>this.result(false)); @@ -478,7 +478,7 @@ API.jobhandle["sdk-import"] = LoadScritpJob; API.jobhandle["sdk-setup"] = SDKSetup; API.jobhandle["vfs-cat"] = VFSJob; API.jobhandle["vfs-rm"] = VFSJob; -API.jobhandle["vfs-rm-no-error"] = VFSJob; +API.jobhandle["vfs-rm_no_error"] = VFSJob; API.jobhandle["vfs-mkdir"] = VFSJob; API.jobhandle["vfs-cp"] = VFSJob; diff --git a/libantosdk/build/release/libantosdk.zip b/libantosdk/build/release/libantosdk.zip index 5712150..fc2e20f 100644 Binary files a/libantosdk/build/release/libantosdk.zip and b/libantosdk/build/release/libantosdk.zip differ diff --git a/libantosdk/core/worker.js b/libantosdk/core/worker.js index e3ffb67..874caa3 100644 --- a/libantosdk/core/worker.js +++ b/libantosdk/core/worker.js @@ -448,7 +448,7 @@ class VFSJob extends AntOSDKBaseJob { .then(d => this.result(d)) .catch((e) =>this.error(e)); break; - case 'rm-no-error': + case 'rm_no_error': this.delete(this.job.data) .then(d => this.result(d)) .catch((e) =>this.result(false)); @@ -478,7 +478,7 @@ API.jobhandle["sdk-import"] = LoadScritpJob; API.jobhandle["sdk-setup"] = SDKSetup; API.jobhandle["vfs-cat"] = VFSJob; API.jobhandle["vfs-rm"] = VFSJob; -API.jobhandle["vfs-rm-no-error"] = VFSJob; +API.jobhandle["vfs-rm_no_error"] = VFSJob; API.jobhandle["vfs-mkdir"] = VFSJob; API.jobhandle["vfs-cp"] = VFSJob;