mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
add Retcode
This commit is contained in:
parent
00497f72de
commit
95bcedf14b
11
op.js
11
op.js
@ -471,6 +471,7 @@ function clean_proto_gen() {
|
||||
|
||||
// all
|
||||
files.forEach(function (file) {
|
||||
var todoremove = false;
|
||||
// main file
|
||||
var found = json_gc_needed.find((j) => file.match(j.name));
|
||||
if (found) {
|
||||
@ -482,6 +483,15 @@ function clean_proto_gen() {
|
||||
//console.log("Files sub are required: "+file);
|
||||
} else {
|
||||
found_needclean++;
|
||||
if (file.match("Retcode")) {
|
||||
console.log("found");
|
||||
} else {
|
||||
todoremove = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (todoremove) {
|
||||
try {
|
||||
fs.unlinkSync(file);
|
||||
//file removed
|
||||
@ -489,7 +499,6 @@ function clean_proto_gen() {
|
||||
console.error(err);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//console.log(file_toaddmore);
|
||||
|
Loading…
Reference in New Issue
Block a user