diff options
author | Brennan Vincent <brennan@umanwizard.com> | 2020-07-05 12:20:46 -0400 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2020-08-08 22:13:21 -0700 |
commit | 58fd4f077d7d4b3dd38d7d27d5e45dd4133e86ce (patch) | |
tree | 0e7b3d2e72b1a29b64013b934f6a910eaa6f3bcb /util/freebsd_install.sh | |
parent | 6dc67cfef0f3b6c6c45879f5e5c73b47f25e38e0 (diff) |
Fix typo in freebsd_install.sh (#9655)
Diffstat (limited to 'util/freebsd_install.sh')
-rwxr-xr-x | util/freebsd_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/freebsd_install.sh b/util/freebsd_install.sh index 09669024cc..f5c78b556f 100755 --- a/util/freebsd_install.sh +++ b/util/freebsd_install.sh @@ -29,7 +29,7 @@ if [ $(id -u) = 0 ]; then else if command -v sudo > /dev/null 2>&1; then sudo pkg update - sudp pkg install -y ${packages} + sudo pkg install -y ${packages} else echo "Make sure you run setup as root first to install base OS dependencies..." echo "" |