mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
20 lines
312 B
Bash
20 lines
312 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
||
|
. ../test_common.sh
|
||
|
|
||
|
. "$srcdir/test_nczarr.sh"
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo ""
|
||
|
echo "*** Remove /netcdf-c from S3 repository"
|
||
|
|
||
|
fileargs netcdf-c
|
||
|
|
||
|
if test "x$FEATURE_S3TESTS" = xyes ; then
|
||
|
${execdir}/s3util -u "${NCZARR_S3_TEST_URL}" -k "/netcdf-c" clear
|
||
|
fi
|
||
|
|
||
|
exit 0
|