mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-11-25 16:47:37 +02:00
eea278058b
Attempt to fix build error
21 lines
399 B
YAML
21 lines
399 B
YAML
language: bash
|
|
|
|
# Use container-based infrastructure for quicker build start-up
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- debian-sid # Grab shellcheck from the Debian repo (o_O)
|
|
|
|
before-script:
|
|
- "sudo apt-get install cabal-install"
|
|
- "cabal update"
|
|
- "cabal install shellcheck"
|
|
|
|
script:
|
|
- bash -c 'shopt -s globstar; shellcheck --exclude SC2034 **/*.sh'
|
|
|
|
matrix:
|
|
fast_finish: true
|