Rev 5941 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 5741 |
dpurdie |
1 |
#! /bin/bash
|
|
|
2 |
# Update the BIN files in JATS
|
|
|
3 |
|
|
|
4 |
JATSBASE=../..
|
|
|
5 |
function copyFile
|
|
|
6 |
{
|
| 5941 |
dpurdie |
7 |
if [ -f $1 ] ; then
|
|
|
8 |
echo "$1 ---> $2"
|
|
|
9 |
rm -f $2
|
|
|
10 |
cp $1 $2
|
|
|
11 |
chmod a+x,u+w $2
|
|
|
12 |
else
|
|
|
13 |
echo "$1 ---> $2 NOT Copied - no source"
|
|
|
14 |
fi
|
| 5741 |
dpurdie |
15 |
}
|
|
|
16 |
|
|
|
17 |
#set -x
|
|
|
18 |
copyFile pkg/timeout/bin/SOLARIS10_SPARC32D/timeout ${JATSBASE}/BIN.solaris10_sparc32/timeout
|
|
|
19 |
copyFile pkg/timeout/bin/LINUX_I386D/timeout ${JATSBASE}/BIN.linux_i386/timeout
|
|
|
20 |
copyFile pkg/timeout/bin/UBUNTU14D/timeout ${JATSBASE}/BIN.linux_x64/timeout
|
|
|
21 |
copyFile pkg/timeout/bin/SOLARIS10_X86D/timeout ${JATSBASE}/BIN.solaris10_x86/timeout
|
|
|
22 |
copyFile pkg/timeout/bin/SOLARISD/timeout ${JATSBASE}/BIN.sparc/timeout
|
|
|
23 |
copyFile pkg/timeout/bin/VS2003P/timeout.exe ${JATSBASE}/BIN.win32/timeout.exe
|
|
|
24 |
|