mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 05:28:49 +00:00
Fix make test
to use local functions
When running `make test` we want to use the local function definitions, not the ones installed on the system. The system config.fish will still insert the system definitions at the end, but at least ours will take precedence.
This commit is contained in:
parent
973dd6ffbd
commit
cce4265cef
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ doc/refman.pdf: doc
|
|||
|
||||
test: $(PROGRAMS) fish_tests
|
||||
./fish_tests
|
||||
cd tests; ../fish <test.fish;
|
||||
cd tests; ../fish -c 'set -x fish_function_path "$$PWD"/../share/functions dummy; source' <test.fish;
|
||||
.PHONY: test
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue