dragonpilot - 基於 openpilot 的開源駕駛輔助系統
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.
|
#!/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) $TARGET_DIR/
|
|
cp -pR --parents $(cat $FILES_SRC) $TARGET_DIR/
|
|
|