feat: start adding support for mappings with encrypted paths
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Glenn Y. Rolland 2024-08-04 22:58:40 +02:00
parent df89dd3dfa
commit c3217a75e3

View file

@ -37,7 +37,7 @@ module GX::Parsers
# Filesystem specific # Filesystem specific
parser.on("--encrypted-path PATH", "Set encrypted path (for gocryptfs)") do |path| parser.on("--encrypted-path PATH", "Set encrypted path (for gocryptfs)") do |path|
encrypted_path = path create_args = create_args.merge({encrypted_path: path})
end end
parser.on("--remote-user USER", "Set SSH user (for sshfs)") do |user| parser.on("--remote-user USER", "Set SSH user (for sshfs)") do |user|
create_args = create_args.merge({remote_user: user}) create_args = create_args.merge({remote_user: user})