mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-05 08:16:06 +08:00
f2baf77e02
* canonical * short commit * channel * cleanup * let's do 9 characters * fixes * set the build style during release creation * as a property old-commit-hash: 33f9193c94d3afb9120369e6557ddcd71133c5ee
16 lines
266 B
Bash
Executable File
16 lines
266 B
Bash
Executable File
#!/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/
|