Skip to content

Commit

Permalink
updating usage message
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Nov 17, 2023
1 parent a5f4a66 commit 80793a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/bash/files/bash/neovim_functions.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

function nisshfs() {
if [ -z $1 ]; then echo "nisshfs <server> [remote_dir]"; return 1; fi
if [ -z $1 ]; then echo "Usage: nisshfs <server> [remote_dir]"; return 1; fi
local remote_dir='/'
if [ ! -d ~/.sshfs ]; then mkdir ~/.sshfs > /dev/null 2>&1; fi
if [ ! -d ~/.sshfs/$1 ]; then mkdir ~/.sshfs/$1 > /dev/null 2>&1; fi
Expand Down

0 comments on commit 80793a3

Please sign in to comment.