Skip to content

Commit

Permalink
fix example she-bang line
Browse files Browse the repository at this point in the history
/bin/bash doesn't exist in the busybox docker image. Previously, we were
running '/bin/sh do_build.sh'. Now we're directly executing ./do_build.sh
so the she-bang line needs fixed.
  • Loading branch information
JonathonReinhart committed Dec 18, 2015
1 parent 6ef6e3c commit 4fac9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/do_build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
echo "Hello world from sample build script!"
echo "This is running inside a docker container."

Expand Down

0 comments on commit 4fac9b5

Please sign in to comment.