11 lines
306 B
Bash
11 lines
306 B
Bash
#!/bin/bash
|
|
# updatelocalsrc - Get latest src files from normal development system
|
|
if [ ! -e buildtools.conf ]; then
|
|
cp buildtools.conf.delivered buildtools.conf
|
|
fi
|
|
source buildtools.conf
|
|
|
|
devsystem=$BUILD_SRC_PATH
|
|
srcpath=$DEV_SRC_PATH
|
|
rsync -avz --del --exclude 'buildtools.conf' $devsystem $srcpath
|