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.
|
#!/bin/bash
|
|
|
|
command -v imagemagick && {
|
|
echo "imagemagick is already installed."
|
|
return 0
|
|
}
|
|
|
|
# Installs the deps needed for run.sh
|
|
if [ "$(whoami)" == "root" ]; then
|
|
apt-get install imagemagick
|
|
else
|
|
sudo apt-get install imagemagick
|
|
fi
|