mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-19 11:48:22 +01:00
update libantosdk
This commit is contained in:
parent
92025918e0
commit
e48c535f08
@ -4,9 +4,8 @@
|
|||||||
"clean": {
|
"clean": {
|
||||||
"jobs": [
|
"jobs": [
|
||||||
{
|
{
|
||||||
"name": "vfs-rm",
|
"name": "vfs-rm_no_error",
|
||||||
"data": ["build/debug","build/release"],
|
"data": ["build/debug","build/release"]
|
||||||
"ignore_error": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -448,7 +448,7 @@ class VFSJob extends AntOSDKBaseJob {
|
|||||||
.then(d => this.result(d))
|
.then(d => this.result(d))
|
||||||
.catch((e) =>this.error(e));
|
.catch((e) =>this.error(e));
|
||||||
break;
|
break;
|
||||||
case 'rm-no-error':
|
case 'rm_no_error':
|
||||||
this.delete(this.job.data)
|
this.delete(this.job.data)
|
||||||
.then(d => this.result(d))
|
.then(d => this.result(d))
|
||||||
.catch((e) =>this.result(false));
|
.catch((e) =>this.result(false));
|
||||||
@ -478,7 +478,7 @@ API.jobhandle["sdk-import"] = LoadScritpJob;
|
|||||||
API.jobhandle["sdk-setup"] = SDKSetup;
|
API.jobhandle["sdk-setup"] = SDKSetup;
|
||||||
API.jobhandle["vfs-cat"] = VFSJob;
|
API.jobhandle["vfs-cat"] = VFSJob;
|
||||||
API.jobhandle["vfs-rm"] = 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-mkdir"] = VFSJob;
|
||||||
API.jobhandle["vfs-cp"] = VFSJob;
|
API.jobhandle["vfs-cp"] = VFSJob;
|
||||||
|
|
||||||
|
Binary file not shown.
@ -448,7 +448,7 @@ class VFSJob extends AntOSDKBaseJob {
|
|||||||
.then(d => this.result(d))
|
.then(d => this.result(d))
|
||||||
.catch((e) =>this.error(e));
|
.catch((e) =>this.error(e));
|
||||||
break;
|
break;
|
||||||
case 'rm-no-error':
|
case 'rm_no_error':
|
||||||
this.delete(this.job.data)
|
this.delete(this.job.data)
|
||||||
.then(d => this.result(d))
|
.then(d => this.result(d))
|
||||||
.catch((e) =>this.result(false));
|
.catch((e) =>this.result(false));
|
||||||
@ -478,7 +478,7 @@ API.jobhandle["sdk-import"] = LoadScritpJob;
|
|||||||
API.jobhandle["sdk-setup"] = SDKSetup;
|
API.jobhandle["sdk-setup"] = SDKSetup;
|
||||||
API.jobhandle["vfs-cat"] = VFSJob;
|
API.jobhandle["vfs-cat"] = VFSJob;
|
||||||
API.jobhandle["vfs-rm"] = 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-mkdir"] = VFSJob;
|
||||||
API.jobhandle["vfs-cp"] = VFSJob;
|
API.jobhandle["vfs-cp"] = VFSJob;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user