Skip to content

Commit fa5f86e

Browse files
committed
change in makefile
1 parent b904247 commit fa5f86e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ build: deps
2323
@CGO_ENABLED=1 go build -v -tags="no_duckdb_arrow" -ldflags="-s -w -X main.Version=$(or $(tag), dev-$(shell git describe --tags --abbrev=0)) -X main.TelemetryKey=$(TELEMETRY_KEY)" -o "$(BUILD_DIR)/$(NAME)" "$(BUILD_SRC)"
2424

2525
integration-test: build
26-
@rm -rf integration-tests/duckdb-files && mkdir -p integration-tests/duckdb-files # Clean up and recreate the directory
26+
@rm -rf integration-tests/duckdb-files # Clean up the directory if it exists
27+
@mkdir -p integration-tests/duckdb-files # Recreate the directory
2728
@touch integration-tests/.git
2829
@touch integration-tests/bruin
2930
@rm -rf integration-tests/.git
@@ -32,7 +33,6 @@ integration-test: build
3233
@cd integration-tests && git init
3334
@go run integration-tests/integration-test.go
3435

35-
3636
clean:
3737
@rm -rf ./bin
3838

0 commit comments

Comments
 (0)