Skip to content

Commit 7fe78c2

Browse files
kenahrensclaude
andcommitted
Fix proxymock directory pattern in Makefile
Add support for 'pulled-*' directories in addition to 'recorded-*' and 'snapshot-*' directories. The integration tests were failing because PROXYMOCK_RECORDING was empty when only pulled-* directories existed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 7d6cd6c commit 7fe78c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PROXYMOCK_ENV = http_proxy=socks5h://localhost:4140 \
66
SSL_CERT_FILE=~/.speedscale/certs/tls.crt
77

88
# Find most recent recording or snapshot directory
9-
PROXYMOCK_RECORDING := $(shell find ./proxymock \( -name "recorded-*" -o -name "snapshot-*" \) -type d -exec ls -td {} + | head -n 1)
9+
PROXYMOCK_RECORDING := $(shell find ./proxymock \( -name "recorded-*" -o -name "snapshot-*" -o -name "pulled-*" \) -type d -exec ls -td {} + | head -n 1)
1010

1111
# Version management
1212
CURRENT_VERSION := $(shell cat VERSION)

0 commit comments

Comments
 (0)