features/test/go/install_go_tool_in_postCreate.sh
Samruddhi Khandale ef939f908c
Go - Adds /go/bin to PATH (#162)
* bug fix

* adds more checks

* adds GOROOT

* revert GOPATH changes
2022-09-16 13:51:35 -07:00

13 lines
261 B
Bash

#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "mkcert version" mkcert --version | grep "v1.4.2"
check "mkcert is installed at correct path" which mkcert | grep "/go/bin/mkcert"
# Report result
reportResults