Add a dummy lsb_release command to test binaries

This should allow us to run tests on os x using the current dokku binary
This commit is contained in:
Jose Diaz-Gonzalez
2016-05-08 03:11:10 -04:00
parent 5de702ea7a
commit f93db55069

6
tests/bin/lsb_release Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
if [[ "$(uname)" == "Darwin" ]]; then
echo "Darwin"
else
echo "Ubuntu"
fi