Merge remote-tracking branch 'origin/master'
* origin/master: Fix shell wrapping for exes with space in path. README.md: add remark that some commands don't work w/o ruby
This commit is contained in:
@@ -37,7 +37,7 @@ to your `.bashrc` or `.zshrc`:
|
|||||||
|
|
||||||
`[ -s "$HOME/.scm_breeze/scm_breeze.sh" ] && source "$HOME/.scm_breeze/scm_breeze.sh"`
|
`[ -s "$HOME/.scm_breeze/scm_breeze.sh" ] && source "$HOME/.scm_breeze/scm_breeze.sh"`
|
||||||
|
|
||||||
**Note:** SCM Breeze performs much faster if you have ruby installed.
|
**Note:** You need to install ruby for some SCM Breeze commands to work. This also improves performance. See [ruby-lang.org](https://www.ruby-lang.org/en/documentation/installation/) for installation information.
|
||||||
|
|
||||||
### File Shortcuts
|
### File Shortcuts
|
||||||
|
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ if [ "$shell_command_wrapping_enabled" = "true" ] || [ "$bash_command_wrapping_e
|
|||||||
if [ "${scmbDebug:-}" = "true" ]; then echo "SCMB: $cmd is an executable file"; fi
|
if [ "${scmbDebug:-}" = "true" ]; then echo "SCMB: $cmd is an executable file"; fi
|
||||||
# Otherwise, command is a regular script or binary,
|
# Otherwise, command is a regular script or binary,
|
||||||
# and the full path can be found with 'find_binary' function
|
# and the full path can be found with 'find_binary' function
|
||||||
alias $cmd="exec_scmb_expand_args $(find_binary $cmd)";;
|
alias $cmd="exec_scmb_expand_args '$(find_binary $cmd)'";;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
# Clean up
|
# Clean up
|
||||||
|
|||||||
Reference in New Issue
Block a user