mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
Disable fish_title on interactive tests
This was apparently what was interfering with the tests working on Linux. Tweak .travis.yml to install expect so the tests run on Linux.
This commit is contained in:
parent
190712d4b0
commit
22fd8e65ad
2 changed files with 4 additions and 1 deletions
|
@ -5,7 +5,7 @@ compiler:
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get update
|
- sudo apt-get update
|
||||||
install:
|
install:
|
||||||
- sudo apt-get install --no-install-recommends libncurses5-dev gettext doxygen
|
- sudo apt-get install --no-install-recommends libncurses5-dev gettext doxygen expect
|
||||||
script:
|
script:
|
||||||
- autoreconf
|
- autoreconf
|
||||||
- ./configure
|
- ./configure
|
||||||
|
|
|
@ -15,6 +15,9 @@ end
|
||||||
|
|
||||||
set -g fish_greeting ''
|
set -g fish_greeting ''
|
||||||
|
|
||||||
|
function fish_title
|
||||||
|
end
|
||||||
|
|
||||||
function _quote
|
function _quote
|
||||||
echo \'(echo $argv[1] | sed -e 's/\'/\\\\\'/g')\'
|
echo \'(echo $argv[1] | sed -e 's/\'/\\\\\'/g')\'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue