Revision 5fa0f5238b0cd46cfe7f6fa76c3f526ea98148d9 authored by Junio C Hamano on 16 August 2019, 17:28:23 UTC, committed by Junio C Hamano on 16 August 2019, 17:28:23 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8e0fa0e
Raw File
make-test-artifacts.sh
#!/bin/sh
#
# Build Git and store artifacts for testing
#

mkdir -p "$1" # in case ci/lib.sh decides to quit early

. ${0%/*}/lib.sh

make artifacts-tar ARTIFACTS_DIRECTORY="$1"

check_unignored_build_artifacts
back to top