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:02:35 -04:00
parent 4b6ac41189
commit a55726a55a

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