Browse Source

Show output when making launchers so as not to confuse poor Dataforces!


git-svn-id: http://svn.dmdirc.com/trunk@4637 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6.3m1rc1
Shane Mc Cormack 16 years ago
parent
commit
b9850a9b2a
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      launcher/createUpdate.sh

+ 3
- 1
launcher/createUpdate.sh View File

@@ -7,10 +7,12 @@ UNIXVERSION=`cat ${LAUNCHERDIR}/unix/DMDirc.sh | grep LAUNCHERVERSION= | awk -F\
7 7
 WINDOWSVERSION=`cat ${LAUNCHERDIR}/windows/DMDirc.dpr | grep "launcherVersion: String =" | awk -F\' '{print $2}'`
8 8
 
9 9
 if [ ! -e "${LAUNCHERUPDATEDIR}/unix-${UNIXVERSION}.sh" ]; then
10
-	cp ${LAUNCHERDIR}/unix/DMDirc.sh ${LAUNCHERUPDATEDIR}/unix-${UNIXVERSION}.sh
10
+	echo "Creating Launcher Update: unix-${UNIXVERSION}";
11
+	cp -${LAUNCHERDIR}/unix/DMDirc.sh ${LAUNCHERUPDATEDIR}/unix-${UNIXVERSION}.sh
11 12
 fi;
12 13
 
13 14
 if [ ! -e "${LAUNCHERUPDATEDIR}/windows-${WINDOWSVERSION}.zip" ]; then
15
+	echo "Creating Launcher Update: windows-${WINDOWSVERSION}";
14 16
 	OLDDIR=${PWD}
15 17
 	cd ${LAUNCHERDIR}/windows
16 18
 	sh compile.sh

Loading…
Cancel
Save