diff options
author | crupest <crupest@outlook.com> | 2024-02-01 22:20:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-02-01 22:20:33 +0800 |
commit | 7e2870588fb804aa58dcea88f8b8c3d070fea9dd (patch) | |
tree | b6eac64733d1bd534c291299be5b1a9e32415cc5 /tools/Crupest.V2ray/Crupest.V2ray/Program.cs | |
parent | ab5092888aa8208286d835e813c55c9f995356c6 (diff) | |
download | crupest-7e2870588fb804aa58dcea88f8b8c3d070fea9dd.tar.gz crupest-7e2870588fb804aa58dcea88f8b8c3d070fea9dd.tar.bz2 crupest-7e2870588fb804aa58dcea88f8b8c3d070fea9dd.zip |
tools(secret): add http proxy, v5 exe and basic v5 config support.
Diffstat (limited to 'tools/Crupest.V2ray/Crupest.V2ray/Program.cs')
-rw-r--r-- | tools/Crupest.V2ray/Crupest.V2ray/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Crupest.V2ray/Crupest.V2ray/Program.cs b/tools/Crupest.V2ray/Crupest.V2ray/Program.cs index e0c0d6d..e623a88 100644 --- a/tools/Crupest.V2ray/Crupest.V2ray/Program.cs +++ b/tools/Crupest.V2ray/Crupest.V2ray/Program.cs @@ -24,8 +24,8 @@ public static class Program var verb = args[0].ToLower(); if (verb == "download-geodata" || verb == "dg") { - var geoDataDonwloader = new GeoDataDownloader(); - geoDataDonwloader.Download(ExeDir); + var geoDataDownloader = new GeoDataDownloader(); + geoDataDownloader.Download(ExeDir); return; } throw new Exception("Invalid command line arguments."); |