Skip to content

Commit

Permalink
fix build instructions symlink commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Joey Engel authored and FlyGoat committed Oct 18, 2023
1 parent 9ce7537 commit 0460a4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ The simplest way to build it:
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
if [ -d "~/.local/bin" ]; then ln -s ryzenadj ~/.local/bin/ryzenadj && echo "symlinked to ~/.local/bin/ryzenadj"
if [ -d "~/.bin" ]; then ln -s ryzenadj ~/.bin/ryzenadj && echo "symlinked to ~/.bin/ryzenadj"
if [ -d ~/.local/bin ]; then ln -s ryzenadj ~/.local/bin/ryzenadj && echo "symlinked to ~/.local/bin/ryzenadj"; fi
if [ -d ~/.bin ]; then ln -s ryzenadj ~/.bin/ryzenadj && echo "symlinked to ~/.bin/ryzenadj"; fi

### Windows

Expand Down

0 comments on commit 0460a4d

Please sign in to comment.