Skip to content

Commit

Permalink
fix: PROTOS_OUT missing space (#3604)
Browse files Browse the repository at this point in the history
Causes protos to be rebuilt every time.
  • Loading branch information
alecthomas authored Dec 3, 2024
1 parent b6e3a64 commit 7e46b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ PROTOS_OUT := "backend/protos/xyz/block/ftl/console/v1/console.pb.go " + \
"backend/protos/xyz/block/ftl/schema/v1/schema.pb.go " + \
CONSOLE_ROOT + "/src/protos/xyz/block/ftl/console/v1/console_pb.ts " + \
CONSOLE_ROOT + "/src/protos/xyz/block/ftl/v1/ftl_pb.ts " + \
CONSOLE_ROOT + "/src/protos/xyz/block/ftl/schema/v1/schema_pb.ts" + \
CONSOLE_ROOT + "/src/protos/xyz/block/ftl/schema/v1/schema_pb.ts " + \
CONSOLE_ROOT + "/src/protos/xyz/block/ftl/publish/v1/publish_pb.ts"
# Configuration for building Docker images
DOCKER_IMAGES := '''
Expand Down

0 comments on commit 7e46b4c

Please sign in to comment.