Skip to content

Commit a6bb8e8

Browse files
committed
Fix netsparkle-generate-appcast name in help
Closes #174
1 parent acd1c73 commit a6bb8e8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/NetSparkle.Tools.AppCastGenerator/Program.cs

+11-11
Original file line numberDiff line numberDiff line change
@@ -386,45 +386,45 @@ static void PrintExtendedExamples()
386386
var examples = @"
387387
#### Key Generation
388388
# Generate Ed25519 keys for the first time
389-
generate_appcast.exe --generate-keys
389+
netsparkle-generate-appcast --generate-keys
390390
# Store keys in a custom location
391-
generate_appcast.exe --key-path path/to/store/keys
391+
netsparkle-generate-appcast --key-path path/to/store/keys
392392
393393
# By default, your Ed25519 signatures are stored on disk in your local
394394
# application data folder in a subdirectory called `netsparkle`.
395395
# If you want to export your keys to the console, you can do:
396-
generate_appcast.exe --export
396+
netsparkle-generate-appcast --export
397397
398398
#### Generate a signature for a binary without creating an app cast:
399-
generate_appcast.exe --generate-signature path/to/binary.exe
399+
netsparkle-generate-appcast --generate-signature path/to/binary.exe
400400
401401
#### Verifying Binaries
402-
generate_appcast.exe --verify path/to/binary.exe --signature base_64_signature
402+
netsparkle-generate-appcast --verify path/to/binary.exe --signature base_64_signature
403403
404404
#### Using a custom key location:
405405
# If your keys are sitting on disk somewhere
406406
# (`NetSparkle_Ed25519.priv` and `NetSparkle_Ed25519.pub` -- both
407407
# in base 64 and both on disk in the same folder!), you can pass in
408408
# the path to these keys like this:
409-
generate_appcast.exe --key-path path/to/keys/
409+
netsparkle-generate-appcast --key-path path/to/keys/
410410
411411
#### Generating an app cast
412412
413413
# Generate an app cast for Windows executables that are sitting in a
414414
# specific directory
415-
generate_appcast.exe -a directory/for/appcast/output/ -e exe -b directory/with/binaries/ -o windows
415+
netsparkle-generate-appcast -a directory/for/appcast/output/ -e exe -b directory/with/binaries/ -o windows
416416
417417
# Add change log info to your app cast
418-
generate_appcast.exe -b binary/folder -p change/log/folder
418+
netsparkle-generate-appcast -b binary/folder -p change/log/folder
419419
420420
# Customize download URL for binaries and change logs
421-
generate_appcast.exe -b binary/folder -p change/log/folder -u https://example.com/downloads -p https://example.com/downloads/changelogs
421+
netsparkle-generate-appcast -b binary/folder -p change/log/folder -u https://example.com/downloads -p https://example.com/downloads/changelogs
422422
423423
# Set your application name for the app cast
424-
generate_appcast.exe -n ""My Awesome App"" -b binary/folder
424+
netsparkle-generate-appcast -n ""My Awesome App"" -b binary/folder
425425
426426
# Use file versions in file names, e.g. for apps like ""My App 1.2.1.dmg""
427-
generate_appcast.exe - n ""macOS version"" - o macos - f true - b binary / folder - e dmg
427+
netsparkle-generate-appcast - n ""macOS version"" - o macos - f true - b binary / folder - e dmg
428428
429429
";
430430
Console.Write(examples);

0 commit comments

Comments
 (0)