File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ github compare-link with the previous one.
11
11
12
12
## [ Unreleased] ( https://github.com/asdf-community/asdf-direnv/compare/v0.3.0..master )
13
13
14
+ - Fix ` find ` warning. #178
14
15
- Add '--no-touch-rc-file' option to prevent rc file modification during updates. #176
15
16
- Alternatively, ` export ASDF_DIRENV_NO_TOUCH_RC_FILE=1 ` to prevent rc file modification. #176
16
17
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ _plugins_in_file() {
189
189
190
190
_all_plugins_list () {
191
191
# NOTE: passing empty to `get_plugin_path` yields the plugins root.
192
- find " $( get_plugin_path " " ) " ! -name ' .DS_Store ' - maxdepth 1 -mindepth 1 -exec basename ' {}' \;
192
+ find " $( get_plugin_path " " ) " - maxdepth 1 -mindepth 1 ! -name ' .DS_Store ' -exec basename ' {}' \;
193
193
}
194
194
195
195
_except_local_plugins_list () {
You can’t perform that action at this time.
0 commit comments