mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-18 12:33:43 +08:00
33f9193c94
* canonical * short commit * channel * cleanup * let's do 9 characters * fixes * set the build style during release creation * as a property
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/
|