mirror of
https://github.com/anklimov/lighthub
synced 2025-12-06 19:59:50 +03:00
8 lines
259 B
Bash
8 lines
259 B
Bash
#! /bin/bash
|
|
CUSTOM_BUILD_FLAGS_FILE=custom-build-flags/build_flags_mega2560.sh
|
|
export FLAGS="$FLAGS -DPIO_SRC_REV="$(git log --pretty=format:%h_%ad -1 --date=short)
|
|
if [ -f $CUSTOM_BUILD_FLAGS_FILE ]; then
|
|
source $CUSTOM_BUILD_FLAGS_FILE
|
|
fi
|
|
echo $FLAGS
|