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.
15 lines
213 B
15 lines
213 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_*) $TARGET_DIR/
|