mirror of
https://github.com/containers/skopeo.git
synced 2025-09-05 08:41:00 +00:00
Rely on "$@" to allow passing options with spaces, like SKOPEO_LDFLAGS. Then pass SKOPEO_LDFLAGS. Also fix the documentation of TESTFLAGS. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
9 lines
180 B
Bash
Executable File
9 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
make PREFIX=/usr install
|
|
|
|
echo "cd ./integration;" go test "$@" ${BUILDTAGS:+-tags "$BUILDTAGS"}
|
|
cd ./integration
|
|
go test "$@" ${BUILDTAGS:+-tags "$BUILDTAGS"}
|