From fb5d28809ba5d8a9452fed62311bf918d51cfc26 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 28 Oct 2022 19:33:05 +0200 Subject: [PATCH] feat(asdf): add golang --- setup/golang.sh | 5 +++++ setup/init.sh | 3 +++ 2 files changed, 8 insertions(+) create mode 100755 setup/golang.sh diff --git a/setup/golang.sh b/setup/golang.sh new file mode 100755 index 0000000..5b80ed1 --- /dev/null +++ b/setup/golang.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +asdf plugin add golang +asdf install golang latest +asdf global golang latest diff --git a/setup/init.sh b/setup/init.sh index 751fe00..6b7d007 100755 --- a/setup/init.sh +++ b/setup/init.sh @@ -30,5 +30,8 @@ source ./rust.sh # Ruby source ./ruby.sh +# Golang +source ./golang.sh + # Visual Studio Code Extensions source ./vscode.sh