We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e46bdc1 + fc2cd7f commit f57e2d4Copy full SHA for f57e2d4
scripts/ffmprovisr
@@ -6,8 +6,10 @@
6
if [[ "$(uname -s)" = "Darwin" ]] ; then
7
if ping -c 1 amiaopensource.github.io >/dev/null 2>&1 ; then
8
ffmprovisr_path='https://amiaopensource.github.io/ffmprovisr/'
9
+ elif [[ -d /usr/local/Cellar/ffmprovisr ]] ; then
10
+ ffmprovisr_path=$(find /usr/local/Cellar/ffmprovisr -name 'index.html' | sort -M | tail -n1)
11
else
- ffmprovisr_path=$(find /usr/local/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
12
+ ffmprovisr_path=$(find /opt/homebrew/Cellar/ffmprovisr -name 'index.html' | sort -M | tail -n1)
13
fi
14
open "${ffmprovisr_path}"
15
elif [[ "$(uname -s)" = "Linux" ]] ; then
0 commit comments