Skip to content

Commit c9f1806

Browse files
committed
Return correct path to Casks
1 parent ee003bd commit c9f1806

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/redis_release/bht/behaviours.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -889,9 +889,9 @@ def initialise(self) -> None:
889889

890890
# Determine which cask file to download based on channel
891891
if self.package_meta.homebrew_channel == HomebrewChannel.STABLE:
892-
cask_file = "zCasks/redis.rb"
892+
cask_file = "Casks/redis.rb"
893893
elif self.package_meta.homebrew_channel == HomebrewChannel.RC:
894-
cask_file = "zCasks/redis-rc.rb"
894+
cask_file = "Casks/redis-rc.rb"
895895
else:
896896
self.logger.error(
897897
f"Unknown homebrew channel: {self.package_meta.homebrew_channel}"

0 commit comments

Comments
 (0)