You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
265 B
16 lines
265 B
1 year ago
|
#!/bin/bash
|
||
|
|
||
|
SOURCE_DIR=$1
|
||
|
TARGET_DIR=$2
|
||
|
|
||
|
if [ -f /TICI ]; then
|
||
|
FILES_SRC="release/files_tici"
|
||
|
else
|
||
|
echo "no release files set"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd $SOURCE_DIR
|
||
|
cp -pR --parents $(cat release/files_common) $BUILD_DIR/
|
||
|
cp -pR --parents $(cat $FILES_SRC) $TARGET_DIR/
|