Skip to content

Commit

Permalink
Update path in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Mar 1, 2024
1 parent 6684cae commit 020c925
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tasks:
cmds:
# pwsh exit with 0 even if ReadLine made errors, the 1+ code is special for an example as parser error
# So testing here with the "silentness"
- pwsh --File test-all.ps1 2>&1 | wc --bytes | grep -Fxq '0'
- pwsh --File src/test-all.ps1 2>&1 | wc --bytes | grep -Fxq '0'
fmt:
cmds:
- dprint fmt
Expand All @@ -29,7 +29,7 @@ tasks:
- nixpkgs-fmt --check ./*.nix
repl:
cmds:
- pwsh -NoExit -File repl.ps1
- pwsh -NoExit -File src/repl.ps1
setup:
cmds:
- pwsh --Command 'Install-Module -Name PSScriptAnalyzer -Force'
Expand Down
4 changes: 2 additions & 2 deletions src/repl.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
. .\fzf-history.ps1
. .\keybindings.ps1
. .\src\fzf-history.ps1
. .\src\keybindings.ps1
4 changes: 2 additions & 2 deletions src/test-all.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.\fzf-history.ps1
.\keybindings.ps1
.\src\fzf-history.ps1
.\src\keybindings.ps1

0 comments on commit 020c925

Please sign in to comment.