Skip to content

Commit 43bce8b

Browse files
committed
Fix install_deps indentation
!/bin/sh -eo pipefail ERROR IN CONFIG FILE: [#/commands/steps] 0 subschemas matched instead of one 1. [#/commands/steps] expected type: Mapping, found: Sequence | SCHEMA: | type: object | INPUT: | - run: | name: Install deps | command: | | apt-get update -qq | apt-get install -y gcc libegl1-mesa-dev libgles2-mesa-dev 2. [#/commands/steps] expected type: String, found: Sequence | Command may be a string reference to another command
1 parent 38c4973 commit 43bce8b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
- ./target
3838
commands:
3939
install_deps:
40-
steps:
41-
- run:
42-
name: Install deps
43-
command: |
44-
apt-get update -qq
45-
apt-get install -y gcc libegl1-mesa-dev libgles2-mesa-dev
40+
steps:
41+
- run:
42+
name: Install deps
43+
command: |
44+
apt-get update -qq
45+
apt-get install -y gcc libegl1-mesa-dev libgles2-mesa-dev
4646

0 commit comments

Comments
 (0)