mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 09:55:29 +02:00
18 lines
291 B
Bash
18 lines
291 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
#Find out the IHOME - it's the parent of my own directory ($IHOME/bin)
|
||
|
curdir=`pwd`
|
||
|
cd `dirname $0`
|
||
|
mydir=`pwd`
|
||
|
cd ..
|
||
|
IHOME=`pwd`
|
||
|
export IHOME
|
||
|
|
||
|
#Update scripts - prerequisite: IHOME is infocenter home
|
||
|
umask 022
|
||
|
cd "$IHOME/bin"
|
||
|
cvs -q update -d
|
||
|
|
||
|
#Update the infocenter
|
||
|
./update.sh
|