Skip to content

Commit

Permalink
Merge pull request NixOS#544 from FPtje/patch-1
Browse files Browse the repository at this point in the history
Fixes NixOS#543
  • Loading branch information
edolstra committed Nov 9, 2016
2 parents adf582d + 4a0a14f commit 7b1f0ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/nixops
Expand Up @@ -576,6 +576,9 @@ def op_mount():
elif flags[n] == "-p":
new_flags.extend(["-p", flags[n+1]])
n = n + 2
elif flags[n] == "-o":
new_flags.extend(["-o", flags[n+1]])
n = n + 2
else:
raise Exception("don't know how to pass SSH flag ‘{0}’ to sshfs".format(flags[n]))

Expand Down

0 comments on commit 7b1f0ca

Please sign in to comment.