Merge pull request #4 from bijanebrahimi/feature-load

fix load function not to depend on execution flag of file
This commit is contained in:
Aaron Bieber 2021-03-19 16:03:55 -06:00 committed by GitHub
commit 896839477f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ _loaded() {
load() { load() {
local _e=$1 local _e=$1
[[ -x $_e ]] && \ [[ -f $_e ]] && \
. $_e . $_e
} }