Skip to content

Commit

Permalink
Project: Include package files in release tarball (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
russellhancox committed Oct 20, 2021
1 parent 5735a12 commit 697cd29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BUILD
Expand Up @@ -121,9 +121,9 @@ genrule(
# Copy config files
for SRC in $(SRCS); do
if [[ "$$(dirname $${SRC})" == *"Conf" ]]; then
if [[ "$$(dirname $${SRC})" == *"Conf"* ]]; then
mkdir -p $(@D)/conf
cp $${SRC} $(@D)/conf/
cp -H $${SRC} $(@D)/conf/
fi
done
Expand Down

0 comments on commit 697cd29

Please sign in to comment.