We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ffcac commit d86468bCopy full SHA for d86468b
lib/loader.sh
@@ -4,5 +4,8 @@
4
# Loads the current environment file
5
##################################################
6
Env__load(){
7
- source $(Env__get_filename)
+ local to_load="$Ash__CALL_DIRECTORY/$(Env__get_filename)"
8
+ if [[ -f "$to_load" ]]; then
9
+ source "$to_load"
10
+ fi
11
}
0 commit comments