Newer
Older
dub_jkp / test / issue2086-copyfiles-subpackage-targetpath / sub / source / app.d
  1. import std.exception: enforce;
  2. import std.file: exists, thisExePath;
  3. import std.path: dirName, buildPath;
  4.  
  5. void main()
  6. {
  7. string filePath = buildPath(thisExePath.dirName, "to_be_deployed.txt");
  8. enforce(filePath.exists);
  9. }