From d1a057913567e21f97de3fe1baa8328e770e72a6 Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Tue, 4 Feb 2014 16:30:57 -0500 Subject: [PATCH] Reformat quick_install.sh and use symbolic links --- quick_install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/quick_install.sh b/quick_install.sh index 49cc4ab..7547823 100755 --- a/quick_install.sh +++ b/quick_install.sh @@ -1,8 +1,8 @@ #! /bin/sh -mkdir -p Build \ -&& cd Build \ -&& cmake .. \ -&& make \ -&& cd .. \ -&& cp -r Build/irc $1 +mkdir -p Build &&\ +cd Build &&\ +cmake .. &&\ +make &&\ +ln -s $(pwd)/irc $1 +