File tree Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ command -v docker-compose > /dev/null 2>&1 || { echo >&2 " Please install Docker Compose: https://docs.docker.com/compose/install/" ; exit 1; }
2
3
docker-compose run --service-ports scala-lang bundle $@
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ command -v docker-compose > /dev/null 2>&1 || { echo >&2 " Please install Docker Compose: https://docs.docker.com/compose/install/" ; exit 1; }
2
3
docker-compose run --service-ports scala-lang bundle exec htmlproofer ./_site/ --only-4xx --empty-alt-ignore --allow-hash-href --disable-external
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ command -v docker-compose > /dev/null 2>&1 || { echo >&2 " Please install Docker Compose: https://docs.docker.com/compose/install/" ; exit 1; }
2
3
docker-compose run --service-ports scala-lang bundle exec htmlproofer ./_site/ --only-4xx --empty-alt-ignore --allow-hash-href
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ command -v docker-compose > /dev/null 2>&1 || { echo >&2 " Please install Docker Compose: https://docs.docker.com/compose/install/" ; exit 1; }
2
3
docker-compose run --service-ports scala-lang jekyll $@
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ command -v docker-compose > /dev/null 2>&1 || { echo >&2 " Please install Docker Compose: https://docs.docker.com/compose/install/" ; exit 1; }
2
3
docker-compose run --service-ports scala-lang jekyll serve --incremental
You can’t perform that action at this time.
0 commit comments