Skip to content

Commit

Permalink
fix: ignore binaries dir when building
Browse files Browse the repository at this point in the history
  • Loading branch information
cktii committed Aug 27, 2024
1 parent 7954637 commit b82cc99
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ cleanup_docker() {
if [[ $# -eq 0 ]]; then
echo "Building all applications..."
for dir in */; do
build_app "$dir"
if [ "$dir" != "$(basename "$BINARIES_DIR")" ]; then
build_app "$dir"
fi
done
elif [[ $1 == "--cleanup" ]]; then
cleanup_docker
Expand Down

0 comments on commit b82cc99

Please sign in to comment.