File: download_h5solution_file.sh

package info (click to toggle)
wsclean 3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,968 kB
  • sloc: cpp: 85,742; python: 3,526; sh: 245; makefile: 21
file content (14 lines) | stat: -rwxr-xr-x 264 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Script for downloading a H5 solution file

set -e

mkdir -p test_data
cd test_data/

H5_SOLUTION_FILE=mock_soltab_2pol.h5

if [ ! -f ${H5_SOLUTION_FILE} ] ; then
    wget -N -q https://support.astron.nl/software/ci_data/wsclean/${H5_SOLUTION_FILE}
fi