mirror of
https://github.com/containers/skopeo.git
synced 2025-08-17 22:17:10 +00:00
PREFIX should default to /usr/local according to GNU coding standards. DESTDIR should just be used for install This will allow us to specify make PREFIX=/usr DESTDIR=/tmp/build/ install Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
15 lines
293 B
Bash
Executable File
15 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
bundle_test_integration() {
|
|
TESTFLAGS="$TESTFLAGS -check.v"
|
|
go_test_dir ./integration
|
|
}
|
|
|
|
# subshell so that we can export PATH without breaking other things
|
|
(
|
|
make bin/skopeo ${BUILDTAGS:+BUILDTAGS="$BUILDTAGS"}
|
|
make PREFIX=/usr install
|
|
bundle_test_integration
|
|
) 2>&1
|