You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
240 B
14 lines
240 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
4 years ago
|
command -v imagemagick && {
|
||
|
echo "imagemagick is already installed."
|
||
|
return 0
|
||
|
}
|
||
|
|
||
4 years ago
|
# Installs the deps needed for run.sh
|
||
|
if [ "$(whoami)" == "root" ]; then
|
||
4 years ago
|
apt-get install imagemagick
|
||
4 years ago
|
else
|
||
4 years ago
|
sudo apt-get install imagemagick
|
||
4 years ago
|
fi
|