mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
56d6e54ac7
* fix: NET-1521 show latest config in /v1/agent/self
14 lines
310 B
Bash
14 lines
310 B
Bash
#!/usr/bin/env bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
readonly PACKAGE_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
|
cd $PACKAGE_DIR
|
|
|
|
# Uses: https://github.com/globusdigital/deep-copy
|
|
deep-copy \
|
|
-pointer-receiver \
|
|
-o ./config.deepcopy.go \
|
|
-type RuntimeConfig \
|
|
./
|