Skip to content

Commit

Permalink
fix: ln
Browse files Browse the repository at this point in the history
  • Loading branch information
ozeliurs committed Feb 16, 2024
1 parent 53fc823 commit 22e6126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/solverlib/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def link_solver(self, path: Path = Path(__file__).parent.parent.parent / "cmake-
if self.exe_path.exists():
self.exe_path.unlink()

path.symlink_to(self.exe_path)
self.exe_path.symlink_to(path)

def solve(self, board: Board, timeout: int = 60) -> str:
# Write the board to a file
Expand Down

0 comments on commit 22e6126

Please sign in to comment.