diff options
-rwxr-xr-x | build | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -11,6 +11,10 @@ echo "Options:" echo " -s, --skip Skip apt-get update/upgrade" } +command -v lsb_release >/dev/null 2>&1 || { + echo "Could not find lsb_release. Please install lsb-release" + exit 1 +} DIST=`lsb_release -cs` # URL of the local CRAN repo for checking for existing builds |