From af783705060e3941616cdfac5dc0eafca7874900 Mon Sep 17 00:00:00 2001 From: Taryn Hill Date: Wed, 29 Apr 2015 16:58:36 -0500 Subject: [PATCH] Silence curl output for OS X native dependencies. --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 0a9e61fef2..eb2ea532c5 100755 --- a/configure +++ b/configure @@ -23,8 +23,8 @@ if [ "$os" == 'Linux' ]; then fi elif [ "$os" == 'Darwin' ]; then echo "Downloading pre-compiled lua and SDL2 libraries" - curl -O https://raw.githubusercontent.com/OpenRA/OpenRALauncherOSX/master/dependencies/Eluant.dll.config - curl -O https://raw.githubusercontent.com/OpenRA/OpenRALauncherOSX/master/dependencies/liblua.5.1.dylib - curl -O https://raw.githubusercontent.com/OpenRA/OpenRALauncherOSX/master/dependencies/libSDL2.dylib + curl -Os https://raw.githubusercontent.com/OpenRA/OpenRALauncherOSX/master/dependencies/Eluant.dll.config + curl -Os https://raw.githubusercontent.com/OpenRA/OpenRALauncherOSX/master/dependencies/liblua.5.1.dylib + curl -Os https://raw.githubusercontent.com/OpenRA/OpenRALauncherOSX/master/dependencies/libSDL2.dylib echo "Downloaded Lua 5.1 and SDL2 libraries successfully." fi