diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-20 18:13:26 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-20 18:13:26 +0900 |
commit | fc2d34eaeefc2ba96bb3e7eb8e1c7ac7982ffeab (patch) | |
tree | 0bf5b4c6b664f252123f59f6c3d8539dc992b97f /scripts | |
parent | e22bc5523b25bd23cde1c47dfe9b567ca7145221 (diff) |
remove `sudo`
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-build-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install-build-deps.sh b/scripts/install-build-deps.sh index fa16b55..7e07bdc 100755 --- a/scripts/install-build-deps.sh +++ b/scripts/install-build-deps.sh @@ -16,11 +16,11 @@ case $platform in brew install openssl ;; Linux-ubuntu*) - sudo apt-get install -y \ + apt-get install -y \ gcc make cmake zlib1g-dev libssl-dev libkrb5-dev ;; Linux-centos* | Linux-rhel* | Linux-rocky*) - sudo yum install -y \ + yum install -y \ gcc make cmake zlib-devel openssl-devel rpm-build ;; *) |