Skip to content

Commit

Permalink
fix: check full path
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmedeski committed Jan 23, 2024
1 parent dd4418c commit 020a725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion session/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func DeterminePath(choice string) (string, error) {
return realPath, nil
}

if path.IsAbs(realPath) {
if path.IsAbs(fullPath) {
return fullPath, nil
}

Expand Down

0 comments on commit 020a725

Please sign in to comment.