commit 475153983b5b4d162904e4e11eb692f6d73038fc parent bbebd1590c9247f606a92d75eff74f304cbc92a4 Author: Vetle Haflan <vetle@haflan.dev> Date: Thu, 21 Oct 2021 13:57:42 +0200 Add helper script 'gol' for calling go with local go.mod Diffstat:
A | gol | | | 17 | +++++++++++++++++ |
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/gol b/gol @@ -0,0 +1,17 @@ +#!/bin/bash +# Run go with a local mod file. +# Useful when developing two modules simultaneously, where one depends on the other. +# A local go.mod version, go.local.mod, can then be added next to the version controlled go.mod, +# and contain a `replace` directive to make go use local source code instead of the external repo. +# Remember to add `**go.local.mod` and `**go.local.sum` to .gitignore. + + +if [ $1 == mod ]; then + cmd="mod $2" + args=${@:3} +else + cmd="$1" + args=${@:2} +fi + +go $cmd -modfile go.local.mod $args