remove vestigial prolog/ directory (#444)

This commit is contained in:
Mark Thom
2020-06-12 18:26:38 -06:00
parent 5ffb4597b3
commit 33325f1574
89 changed files with 327 additions and 298 deletions

View File

@@ -1,6 +1,6 @@
extern crate indexmap;
use indexmap::IndexSet;
use crate::indexmap::IndexSet;
use std::env;
use std::fs::{File, copy, read_dir};
@@ -15,7 +15,7 @@ fn main()
let mut libraries = File::create(&dest_path).unwrap();
let mut library_index = IndexSet::new();
let paths = read_dir("./src/prolog/lib").unwrap();
let paths = read_dir("./src/lib").unwrap();
for item in paths {
let item = item.unwrap().path();