Skip to content

Commit bbb2602

Browse files
manually export path with asdf shims in.
1 parent 6311c4f commit bbb2602

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/devcontainers/base/src/.devcontainer/nhsnotify/postcreatecommand.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ echo "reload shell"
3838
source ~/.zshrc
3939
echo "reloaded shell"
4040

41+
export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"
4142
echo "running make config"
42-
zsh -c "make config"
43+
make config
4344
echo "make config complete"
4445

4546
cd $CURRENT_DIR
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/bin/bash
22

33
echo "running make config"
4-
zsh -c "make config"
4+
export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"
5+
make config
56
echo "make config complete"
67

78
/welcome.sh

0 commit comments

Comments
 (0)