We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
darkrift pull
1 parent e4b8490 commit 7fa8744Copy full SHA for 7fa8744
Program.cs
@@ -214,6 +214,12 @@ private static int Pull(PullOptions opts)
214
}
215
216
217
+ // if version provided is "latest", it is being replaced with currently most recent one
218
+ if (opts.Version == "latest")
219
+ {
220
+ opts.Version = VersionManager.GetLatestDarkRiftVersion();
221
+ }
222
+
223
string path = VersionManager.GetInstallationPath(opts.Version, opts.Tier ? ServerTier.Pro : ServerTier.Free, opts.Platform);
224
225
if (path == null)
0 commit comments