mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
12 lines
173 B
Bash
12 lines
173 B
Bash
#!/bin/bash
|
|
|
|
DEST=$1
|
|
|
|
set -e
|
|
|
|
bundle_test_integration() {
|
|
LDFLAGS="$LDFLAGS $LDFLAGS_STATIC" go_test_dir ./integration
|
|
}
|
|
|
|
bundle_test_integration 2>&1 | tee $DEST/test.log
|