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 01:35:11 -04:00
parent fd112305d9
commit ad84ddea31

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