Skip to content

Commit

Permalink
Fix test-travis.sh using bash
Browse files Browse the repository at this point in the history
  • Loading branch information
HanXHX committed Oct 16, 2015
1 parent 6c836d5 commit be47b5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/debian-jessie.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM williamyeh/ansible:debian8-onbuild

RUN apt-get update
CMD ["sh", "tests/test-travis.sh"]
CMD ["bash", "tests/test-travis.sh"]

2 changes: 1 addition & 1 deletion tests/debian-wheezy.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM williamyeh/ansible:debian7-onbuild

RUN apt-get update
CMD ["sh", "tests/test-travis.sh"]
CMD ["bash", "tests/test-travis.sh"]

2 changes: 1 addition & 1 deletion tests/test-travis.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Thanks to https://servercheck.in/blog/testing-ansible-roles-travis-ci-github

Expand Down

0 comments on commit be47b5e

Please sign in to comment.