aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-04-18 01:45:24 +1000
committerDavid Walter Seikel2013-04-18 01:45:24 +1000
commiteb6397c6db14f135755a41aeace3ef313fc9d7ef (patch)
tree1d14de7773334f01f6cfb78bed17e5e66f2a2261
parentAdjust the naming of the result. (diff)
downloadImpyReleaseBuilder-eb6397c6db14f135755a41aeace3ef313fc9d7ef.zip
ImpyReleaseBuilder-eb6397c6db14f135755a41aeace3ef313fc9d7ef.tar.gz
ImpyReleaseBuilder-eb6397c6db14f135755a41aeace3ef313fc9d7ef.tar.bz2
ImpyReleaseBuilder-eb6397c6db14f135755a41aeace3ef313fc9d7ef.tar.xz
Minor clean ups.
-rwxr-xr-xBuildReleases.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/BuildReleases.sh b/BuildReleases.sh
index 5016ca3..1620920 100755
--- a/BuildReleases.sh
+++ b/BuildReleases.sh
@@ -189,7 +189,7 @@ fi
189if [ $do_linux64 -eq 1 ] 189if [ $do_linux64 -eq 1 ]
190then 190then
191 echo "Building in qemu, 64 bit linux." && 191 echo "Building in qemu, 64 bit linux." &&
192 qemu-system-x86_64 -M pc -cpu phenom -m 1G -hda $img_linux64 -serial stdio <<- zzzzEOFzzzz 192 qemu-system-x86_64 -M pc -cpu phenom -m 1G -hda ${img_linux64} -serial stdio <<- zzzzEOFzzzz
193 # 193 #
194 mkdir -p /home/builder && 194 mkdir -p /home/builder &&
195 cd /home/builder && 195 cd /home/builder &&
@@ -209,7 +209,7 @@ then
209 ./3-compile-SL-source && 209 ./3-compile-SL-source &&
210 ./4-package-viewer && 210 ./4-package-viewer &&
211 cd ../../indra/viewer-linux-* && 211 cd ../../indra/viewer-linux-* &&
212 cp Imprudence-* ../../../../../TARBALLS && 212 cp Imprudence-* /home/builder/TARBALLS &&
213 cd /home/builder/TARBALLS && 213 cd /home/builder/TARBALLS &&
214 busybox ftpput ${FTP_SERVER} -vP ${FTP_PORT} ${version}-Linux-x86_64.tar.bz2 ${version}-Linux-x86_64.tar.bz2 214 busybox ftpput ${FTP_SERVER} -vP ${FTP_PORT} ${version}-Linux-x86_64.tar.bz2 ${version}-Linux-x86_64.tar.bz2
215 215
@@ -222,7 +222,7 @@ fi
222if [ $do_linux32 -eq 1 ] 222if [ $do_linux32 -eq 1 ]
223then 223then
224 echo "Building in qemu, 32 bit linux." && 224 echo "Building in qemu, 32 bit linux." &&
225 qemu-system-i386 -M pc -cpu athlon -m 1G -hda $img_linux32 -serial stdio <<- zzzzEOFzzzz 225 qemu-system-i386 -M pc -cpu athlon -m 1G -hda ${img_linux32} -serial stdio <<- zzzzEOFzzzz
226 # 226 #
227 mkdir -p /home/builder && 227 mkdir -p /home/builder &&
228 cd /home/builder && 228 cd /home/builder &&
@@ -241,7 +241,7 @@ then
241 ./3-compile-SL-source && 241 ./3-compile-SL-source &&
242 ./4-package-viewer && 242 ./4-package-viewer &&
243 cd ../../indra/viewer-linux-* && 243 cd ../../indra/viewer-linux-* &&
244 cp Imprudence-* ../../../../../TARBALLS && 244 cp Imprudence-* /home/builder/TARBALLS &&
245 cd /home/builder/TARBALLS && 245 cd /home/builder/TARBALLS &&
246 busybox ftpput ${FTP_SERVER} -vP ${FTP_PORT} ${version}-Linux-x86.tar.bz2 ${version}-Linux-x86.tar.bz2 246 busybox ftpput ${FTP_SERVER} -vP ${FTP_PORT} ${version}-Linux-x86.tar.bz2 ${version}-Linux-x86.tar.bz2
247 247