summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrennan Vincent <brennan@umanwizard.com>2020-07-05 12:20:46 -0400
committerGitHub <noreply@github.com>2020-07-06 02:20:46 +1000
commit85e20a5cf433c2164e3d0a5c8de8cbd5dfc4c6fe (patch)
tree3f92d65ed4840cac6b8f6e13cba9616070a63dcd
parentda5aed6beffeaf67eb6f05bbbe4ca75ecde2ebfb (diff)
Fix typo in freebsd_install.sh (#9655)0.9.28
-rwxr-xr-xutil/freebsd_install.sh2
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 ""