diff --git a/source/app.d b/source/app.d index 09c4618..e9cd4c3 100644 --- a/source/app.d +++ b/source/app.d @@ -267,10 +267,10 @@ // This help is actually a mixup of help for this application and the // supporting vibe script / .cmd file. logInfo( -`Usage: vibe [] [] [-- ] +`Usage: dub [] [] [-- ] -Manages the vibe.d application in the current directory. "--" can be used to -separate vibe options from options passed to the application. +Manages the DUB project in the current directory. "--" can be used to separate +DUB options from options passed to the application. Possible commands: help Prints this help screen @@ -325,7 +325,7 @@ string[] ret; string[string] pkgs = dub.installedPackages(); foreach(id, vers; pkgs) - ret ~= "VPM_package_" ~ stripDlangSpecialChars(id); + ret ~= "Have_" ~ stripDlangSpecialChars(id); return ret; } diff --git a/source/dub/dub.d b/source/dub/dub.d index 002db5e..da738d8 100644 --- a/source/dub/dub.d +++ b/source/dub/dub.d @@ -27,7 +27,6 @@ import std.datetime; import std.exception; import std.file; -import std.path; import std.string; import std.typecons; import std.zip;