5 lines
78 B
Bash
5 lines
78 B
Bash
#!/bin/sh
|
|
set -e
|
|
if which update-mime > /dev/null 2>&1; then
|
|
update-mime
|
|
fi
|