Skip to content

Commit

Permalink
Install BASH to enable and support globstar (**) (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahtierney authored Jun 18, 2020
1 parent aab9be9 commit fa82252
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## v1.2.0 - 2020-06-19

### Added

- Support for globstar (`**`) by changing the shell to bash [#6]

[#6]:https://github.com/avto-dev/markdown-lint/pull/6

## v1.2.0 - 2020-05-28

### Added
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ LABEL \
org.label-schema.vendor="avto-dev" \
org.label-schema.vcs-url="https://github.com/avto-dev/markdown-lint"

RUN apk add --no-cache bash
RUN set -x \
# package page: <https://github.com/igorshubovych/markdownlint-cli>
&& npm install -g markdownlint-cli \
Expand Down
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
#!/bin/bash
shopt -s globstar

RUN_ARGS="";

Expand Down

0 comments on commit fa82252

Please sign in to comment.