mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
Add travis support via .travis.yml and bash bootstrap script
This commit is contained in:
parent
bb467f75ac
commit
0aa8af477a
9
.travis.yml
Normal file
9
.travis.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
language: c
|
||||||
|
|
||||||
|
env:
|
||||||
|
- FISH_PPA=nightly-master
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- script/bootstrap.sh
|
||||||
|
|
||||||
|
script: fish ./spec/spec.fish
|
6
script/bootstrap.sh
Executable file
6
script/bootstrap.sh
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
ppa=ppa:fish-shell/${FISH_PPA:-nightly-master}
|
||||||
|
sudo add-apt-repository -y $ppa
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y install fish
|
||||||
|
curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.fish | FORK=bucaran fish
|
Loading…
Reference in New Issue
Block a user