aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/sdp.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-11-28 10:16:13 -0500
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit1f390cbff2500f373721021b97ca47a813b6b671 (patch)
treeca4f7ad1d729a1119796605fffe76161fcf74540 /src/sdp/sdp.d
parent0.20.2 paths, config & manifest files (diff)
paths, manifestdoc-reform_v0.0.20
Diffstat (limited to 'src/sdp/sdp.d')
-rwxr-xr-xsrc/sdp/sdp.d6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sdp/sdp.d b/src/sdp/sdp.d
index a9f63e2..af3a0a0 100755
--- a/src/sdp/sdp.d
+++ b/src/sdp/sdp.d
@@ -300,14 +300,14 @@ void main(string[] args) {
}
auto _opt_action = OptActions();
foreach(arg; args[1..$]) {
- auto _manifest = ManifestFile!()(arg);
+ auto _manifest = PodManifest!()(arg);
if (arg.match(rgx.flag_action)) {
flag_action ~= " " ~ arg; // flags not taken by getopt
} else if (arg.match(rgx.src_pth)) {
fns_src ~= arg; // gather input markup source file names for processing
- } else if (_manifest.manifest_file_and_path) {
+ } else if (_manifest.pod_manifest_file_with_path) {
string contents_location_;
- string sisudoc_txt_ = _manifest.manifest_file_and_path;
+ string sisudoc_txt_ = _manifest.pod_manifest_file_with_path;
enforce(
exists(sisudoc_txt_)!=0,
"file not found: «" ~