source: docker/msys64.sh@ 976:69bc5891e14d

python3
Last change on this file since 976:69bc5891e14d was 976:69bc5891e14d, checked in by István Váradi <ivaradi@…>, 5 years ago

Reworked Windows Docker image and MSYS building (re #347)

  • Property exe set to *
File size: 295 bytes
Line 
1#!/bin/bash
2
3# Script to receive the msys64.tar.gz file on the server
4
5set -e -u
6
7scriptdir=$(cd $(dirname $0) && pwd)
8
9msys64path="${scriptdir}/msys64.tar.gz"
10
11echo "Receiving msys64.tar.gz.new ..."
12cat > "${msys64path}.new"
13
14echo "Replacing old version"
15mv "${msys64path}.new" "${msys64path}"
Note: See TracBrowser for help on using the repository browser.