8 lines
108 B
Bash
8 lines
108 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Install mise-en-place
|
||
|
|
||
|
if (command -v mise &>/dev/null); then
|
||
|
curl https://mise.run | sh
|
||
|
fi
|