mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-11 03:31:26 +00:00
This commit implements a massive refactor of the repository, and moves the build system over to use Mage (magefile.org) which should allow seamless building across multiple platforms.
11 lines
351 B
Bash
Executable File
11 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2017, Joe Tsai. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE.md file.
|
|
|
|
# zfuzz wraps internal/tool/fuzz and is useful for fuzz testing each of
|
|
# the implementations in this repository.
|
|
cd $(dirname "${BASH_SOURCE[0]}")/internal/tool/fuzz
|
|
./fuzz.sh "$@"
|