Skip to content

Commit 16b8d9f

Browse files
committed
Fix fork command
1 parent b1e7f9a commit 16b8d9f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

development.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ function edit {
5353
}
5454

5555
function fork {
56-
& ${env:LOCALAPPDATA}\Fork\Fork.exe
56+
# Fork requires an absolute path https://github.com/ForkIssues/TrackerWin/issues/416#issuecomment-527067604
57+
$absolutePath = resolve-path .
58+
& ${env:LOCALAPPDATA}\Fork\Fork.exe $absolutePath
5759
}
5860

5961
# I used to run Sublime so occasionally my fingers type it

0 commit comments

Comments
 (0)