Skip to content

Commit

Permalink
Fixed an issue with Flash
Browse files Browse the repository at this point in the history
- fixed an issue with locating the Flash library when more then one copy
is present in the system
  • Loading branch information
Cristiano Guadagnino committed Apr 29, 2017
1 parent 8c80e2e commit 5c60119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nativefier-freedesktop
Expand Up @@ -81,7 +81,7 @@ fi
flash=1;
kdialog --title "Install Web App" --yesno "Does $lname need flash support?" || flash=0;
if [ "$flash" -eq 1 ]; then
fp=`locate libpepflashplayer.so`;
fp=`locate -e -L -l 1 -b '\libpepflashplayer.so'`;
case "$?" in
1)
echo 'No flash plugin available'
Expand Down

0 comments on commit 5c60119

Please sign in to comment.