Skip to content
Snippets Groups Projects
Commit f398b5f3 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Remove the always-on force option, replaced with new readdfiles.js

parent c43549ff
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@ if(argc < 1) {
alert("No directory code specfiied");
exit(0);
}
var options = { force: true };
var fbase = new FileBase(argv[0]);
if(!fbase.open()) {
alert("failed to open base");
......@@ -11,11 +10,6 @@ if(!fbase.open()) {
var file_list = fbase.get_list(argv[1] || "*", FileBase.DETAIL.NORM);
for(var i in file_list) {
var file = file_list[i];
if(options.force) {
print("Updating " + file.name);
fbase.update(file.name, file, /* use_diz_always: */true, /* re-add: */true);
continue;
}
var copy = JSON.parse(JSON.stringify(file));
for(var p in file) {
var str = prompt(p + " [" + file[p] + "]");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment