Skip to content

Commit

Permalink
Install master branch for mautrix-python bridges
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Aug 11, 2023
1 parent f7c6d38 commit acaaf5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/bbctl/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ func setupPythonVenv(ctx context.Context, bridgeDir, bridgeType string) error {
case "heisenbridge":
installPackage = "heisenbridge"
case "telegram", "facebook", "googlechat", "instagram", "twitter":
installPackage = fmt.Sprintf("mautrix-%s[all]", bridgeType)
//installPackage = fmt.Sprintf("mautrix-%s[all]", bridgeType)
installPackage = fmt.Sprintf("mautrix-%s[all] @ git+https://github.com/mautrix/%s.git@master", bridgeType, bridgeType)
default:
return fmt.Errorf("unknown python bridge type %s", bridgeType)
}
Expand Down

0 comments on commit acaaf5b

Please sign in to comment.