Skip to content

Commit ff34bf1

Browse files
committed
reformat
1 parent 8b2438b commit ff34bf1

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ indent_style = tab
2424
indent_style = space
2525
indent_size = 2
2626

27+
# YAML files want narrow space
28+
[*.yml]
29+
indent_style = space
30+
indent_size = 2
31+
2732
# SQL files want tab indentation
2833
[*.sql]
2934
indent_style = space

.travis.yml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,16 @@ script:
2323
- if [ "$TRAVIS_OS_NAME" = "linux" -a "$CROSS_COMPILE" = "true" ]; then env CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc go build -v; zip -r upload/pg_tileserv_snapshot_windows.zip pg_tileserv.exe README.md assets/ LICENSE.md; fi
2424

2525
deploy:
26-
on:
27-
repo: CrunchyData/pg_tileserv
28-
branch: master
29-
provider: s3
30-
region: us-east-1
31-
bucket: postgisftw
32-
local_dir: "./upload"
33-
overwrite: true
34-
verbose: true
35-
edge: true
36-
access_key_id: ${AWS_ACCESS_KEY_ID}
37-
secret_access_key: ${AWS_SECRET_ACCESS_KEY}
38-
cleanup: false
39-
40-
26+
provider: s3
27+
on:
28+
repo: CrunchyData/pg_tileserv
29+
branch: master
30+
region: us-east-1
31+
bucket: postgisftw
32+
local_dir: "./upload"
33+
overwrite: true
34+
verbose: true
35+
edge: true
36+
access_key_id: ${AWS_ACCESS_KEY_ID}
37+
secret_access_key: ${AWS_SECRET_ACCESS_KEY}
38+
cleanup: false

0 commit comments

Comments
 (0)