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 9425e96 commit 4cdcf47Copy full SHA for 4cdcf47
dotfiles/.bootstrap.zsh
@@ -1,11 +1,23 @@
1
#!/usr/bin/env zsh
2
3
+# Hint to commands that they should keep their output simple.
4
export TERM=dumb
5
+
6
+# Share mise cache with the host.
7
mkdir -p /mnt/home/.cache/mise
8
rm -rf $HOME/.cache/mise
9
ln -s -t ~/.cache /mnt/home/.cache/mise
10
11
+# Trust the mise configs in the dev container.
12
mise trust --yes --all
13
14
+# Install tools and run init tasks inside an interactive login shell.
15
+zsh -l -i -c '
16
mise use --yes --global usage
17
mise install --yes
18
mise run --continue-on-error --no-cache "init:**"
19
+'
20
21
+# This script should always succeed, even if the last command exits with a
22
+# non-zero status code.
23
true
0 commit comments