9 lines
223 B
Bash
Executable File
9 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Devcontainer postCreateCommand.
|
|
# Install dependencies for running this project in GitHub Codespaces.
|
|
|
|
set -eux
|
|
|
|
# For git version tagging:
|
|
go install github.com/maykonlsf/semver-cli/cmd/semver@latest
|