File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,20 +7,21 @@ do-global-install() {
7
7
newindent.die " No arguments or flags must be specified"
8
8
fi
9
9
10
- # TODO: this should be changed when we make global location dot_basalt
11
10
if ! rm -rf " $BASALT_GLOBAL_DATA_DIR /global/.basalt" ; then
12
11
print.indent-die " Could not remove global '.basalt' directory"
13
12
fi
14
13
15
- local -a deps =()
14
+ local -a dependencies =()
16
15
local dep=
17
16
while IFS= read -r dep; do
18
17
if [ -z " $dep " ]; then
19
18
continue
20
19
fi
21
20
22
- deps +=(" $dep " )
21
+ dependencies +=(" $dep " )
23
22
done < " $BASALT_GLOBAL_DATA_DIR /global/dependencies" ; unset dep
24
23
25
- pkg.install_package " $BASALT_GLOBAL_DATA_DIR /global" ' lenient' " ${deps[@]} "
24
+ pkg.install_package " $BASALT_GLOBAL_DATA_DIR /global" ' lenient' " ${dependencies[@]} "
25
+ pkg.phase_local_integration_recursive " $BASALT_GLOBAL_DATA_DIR /global" ' yes' ' strict' " ${dependencies[@]} "
26
+ pkg.phase_local_integration_nonrecursive " $BASALT_GLOBAL_DATA_DIR /global"
26
27
}
You can’t perform that action at this time.
0 commit comments