mirror of
https://github.com/danbee/mac-setup
synced 2025-03-04 08:39:10 +00:00
19 lines
337 B
Bash
Executable File
19 lines
337 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export LDFLAGS="-L/usr/local/opt/zlib/lib"
|
|
export CPPFLAGS="-I/usr/local/opt/zlib/include"
|
|
|
|
pushd "$HOME"
|
|
|
|
for tool in `awk -F " " '{print $1}' .tool-versions`; do
|
|
asdf plugin-add "$tool"
|
|
|
|
if [ "$tool" == "nodejs" ]; then
|
|
bash "$HOME/.asdf/plugins/nodejs/bin/import-release-team-keyring"
|
|
fi
|
|
done
|
|
|
|
asdf install
|
|
|
|
popd
|