Skip to content

Commit

Permalink
install: add openssl to macOS requirments
Browse files Browse the repository at this point in the history
Added openssl to 'tt install' macOS requirments.

Part of #254
  • Loading branch information
better0fdead committed Dec 29, 2022
1 parent 62f63a9 commit 5b93d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func programDependenciesInstalled(program string) bool {
} else if program == "tarantool" {
if osName == "darwin" {
programs = []Package{{"cmake", "cmake"}, {"git", "git"},
{"make", "make"}, {"clang", "clang"}}
{"make", "make"}, {"clang", "clang"}, {"openssl", "openssl"}}
} else if strings.Contains(osName, "Ubuntu") || strings.Contains(osName, "Debian") {
programs = []Package{{"cmake", "cmake"}, {"git", "git"}, {"make", "make"},
{"gcc", " build-essential"}}
Expand Down

0 comments on commit 5b93d3a

Please sign in to comment.