Skip to content

Commit

Permalink
fix: corrected the makefile
Browse files Browse the repository at this point in the history
The directive was testing the architecture (i.e arm64/amd64) and not the os (darwin/linux).

Signed-off-by: Bruno Bressi <[email protected]>
  • Loading branch information
puffitos committed Sep 28, 2024
1 parent f257ef6 commit 8a6e06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ e2e-cluster:
@echo "Creating registry..."
@k3d registry create registry.localhost --port $(PORT)
@echo "Adding registry to cluster..."
@uname -m | grep -q 'Darwin' && export K3D_FIX_DNS=0; k3d cluster create cosign-tests --registry-use k3d-registry.localhost:$(PORT)
@uname | grep -q 'Darwin' && export K3D_FIX_DNS=0; k3d cluster create cosign-tests --registry-use k3d-registry.localhost:$(PORT)
@echo "Create test namespace..."
@kubectl create namespace test-cases

Expand Down

0 comments on commit 8a6e06d

Please sign in to comment.