You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it is valid use case to set both command map and prefix
in case of using different binary, the map should still be active
and prefix should be applied as extra
so following example correclty executes rake2.2 within bundler:
SSHKit.config.command_map[:rake] = 'rake2.2'
SSHKit.config.command_map.prefix[:rake] = 'bundle exec'
Only drawback is, that resulting command will be:
bundle exec /usr/bin/env rake2.2
0 commit comments