Skip to content

Commit

Permalink
Merge branch 'main' into release_1.0
Browse files Browse the repository at this point in the history
Fix option path
  • Loading branch information
flinguenheld committed Jul 27, 2023
2 parents 0fb1a4e + 7d5453b commit 17216b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/option/option_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ OptionFile::OptionFile()
_capitals("0"), _numbers("1"), _symbols("0"), _french_extras("0"), _french_extra_caps("0") {

#ifdef RELEASE_LINUX
_filename = std::string(getenv("USER")) + ".kebb";
_filename = std::string(getenv("HOME")) + "/.kebb";
#else
_filename = std::string("./options.kebb");
#endif
Expand Down

0 comments on commit 17216b6

Please sign in to comment.