Skip to content

Commit

Permalink
keybase-gui: fix kbfs mount path check (#40080)
Browse files Browse the repository at this point in the history
  • Loading branch information
brainrake authored and benley committed Jul 17, 2018
1 parent 76e4208 commit b3c3df4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pkgs/tools/security/keybase/gui.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ stdenv.mkDerivation rec {
checkFailed
fi
${utillinuxMinimal}/bin/mountpoint /keybase &>/dev/null
if [ "\$?" -ne "0" ]; then
echo "Keybase is not mounted to /keybase." >&2
echo "You might need to run: kbfsfuse /keybase" >&2
if [ -z "\$(keybase status | grep kbfsfuse)" ]; then
echo "Could not find kbfsfuse client in keybase status." >&2
echo "You might need to run: kbfsfuse" >&2
checkFailed
fi
Expand Down

0 comments on commit b3c3df4

Please sign in to comment.