Skip to content

Commit

Permalink
Fix executable name in help text
Browse files Browse the repository at this point in the history
  • Loading branch information
snesb committed Oct 7, 2024
1 parent 2e4737d commit d7a51c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ jobs:
cp ${{github.workspace}}/tsor/tsor.svg ${{github.workspace}}/AppDir/usr/share/icons/tsor.svg
chmod +x ${{github.workspace}}/AppDir/tsor
appimage-builder --recipe ${{github.workspace}}/tsor/AppImage.yml
chmod +x ${{github.workspace}}/tsor-latest-x86_64.AppImage
- uses: actions/upload-artifact@v4
name: Upload artifact
Expand Down
3 changes: 2 additions & 1 deletion src/util/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
#include <vector>

#include "options.h"
#include "version.h"

namespace tsor {
cxxopts::ParseResult parse_args(int argc, char* argv[]) {
try {
cxxopts::Options options(argv[0]);
cxxopts::Options options(PROJECT_NAME);
options.add_options()
("i,input", "Input file", cxxopts::value<std::string>())
("filter", "List of PIDs to process (e.g. 11,1210,2A0,3FF)", cxxopts::value<std::string>())
Expand Down

0 comments on commit d7a51c5

Please sign in to comment.