source:
docker/msys64.sh@
977:68c0592b4915
Last change on this file since 977:68c0592b4915 was 976:69bc5891e14d, checked in by , 6 years ago | |
---|---|
|
|
File size: 295 bytes |
Line | |
---|---|
1 | #!/bin/bash |
2 | |
3 | # Script to receive the msys64.tar.gz file on the server |
4 | |
5 | set -e -u |
6 | |
7 | scriptdir=$(cd $(dirname $0) && pwd) |
8 | |
9 | msys64path="${scriptdir}/msys64.tar.gz" |
10 | |
11 | echo "Receiving msys64.tar.gz.new ..." |
12 | cat > "${msys64path}.new" |
13 | |
14 | echo "Replacing old version" |
15 | mv "${msys64path}.new" "${msys64path}" |
Note:
See TracBrowser
for help on using the repository browser.