Skip to content

Commit aca0008

Browse files
committed
Scripts: Add doctl CLI command to install-admin-tools.sh
Signed-off-by: Michael Mayer <michael@photoprism.app>
1 parent 312f8e1 commit aca0008

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

scripts/dist/install-admin-tools.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,17 @@ then
1818
exit 1
1919
fi
2020

21-
echo "Installing duf, a better df alternative..."
21+
echo "Installing the duf command to check storage usage..."
2222
GOBIN="/usr/local/bin" go install github.com/muesli/duf@latest
2323

24-
echo "Installing muffet, a fast website link checker..."
24+
echo "Installing muffet, a tool for checking links..."
2525
GOBIN="/usr/local/bin" go install github.com/raviqqe/muffet@latest
2626

27-
echo "Installing petname, an RFC1178 implementation to generate pronounceable names..."
27+
echo "Installing petname to generate pronounceable names..."
2828
GOBIN="/usr/local/bin" go install github.com/dustinkirkland/golang-petname/cmd/petname@latest
2929

30+
echo "Installing doctl for using the DigitalOcean API...."
31+
GOBIN="/usr/local/bin" go install github.com/digitalocean/doctl/cmd/doctl@latest
32+
3033
# Create a symbolic link for "duf" so that it is used instead of the original "df".
3134
ln -sf /usr/local/bin/duf /usr/local/bin/df

0 commit comments

Comments
 (0)