Removed DSH dependency.

This commit is contained in:
Andrew Lalis 2022-11-10 11:35:53 +01:00
parent e735000c9a
commit 499df02472
3 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,6 @@
],
"copyright": "Copyright © 2022, Andrew Lalis",
"dependencies": {
"dsh": "~>1.6.1",
"filesizes": "~>1.1.0",
"progress": "~>5.0.2"
},

View File

@ -1,7 +1,6 @@
{
"fileVersion": 1,
"versions": {
"dsh": "1.6.1",
"filesizes": "1.1.0",
"progress": "5.0.2"
}

View File

@ -1,6 +1,7 @@
import dsh;
import std.typecons;
import std.path;
import std.file;
import std.stdio;
import std.string;
import std.algorithm;
import std.getopt;
@ -55,7 +56,7 @@ int main(string[] args) {
auto nullableGoProDir = getGoProDir(mediaSearchDir);
if (nullableGoProDir.isNull) {
error("Couldn't find GoPro directory.");
writeln("Couldn't find GoPro directory.");
return 1;
}
string goProDir = nullableGoProDir.get();