Normalize ROOT naming and calculation in hack/

This commit is contained in:
aram price
2020-08-11 17:48:16 -07:00
parent 031129778e
commit e48d9faf27
7 changed files with 11 additions and 15 deletions

View File

@@ -1,7 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
root_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
function tidy_cmd() {
echo 'go mod tidy -v'
@@ -48,7 +47,7 @@ function with_modules() {
local cmd_function="${1}"
cmd="$(${cmd_function})"
pushd "${root_dir}"
pushd "${ROOT}"
for mod_file in $(find . -maxdepth 4 -name go.mod | sort); do
mod_dir="$(dirname "${mod_file}")"
(