mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-12 15:38:29 -05:00
This fixes many issues: - Python packages can be built with XCode 10, closes #1782 - Handling of CMake options for OSX stdc++ is streamlined - TR1 warnings from MSVC 2017 have been silenced - Nightly builds fixed, closes #1778 - Documentation builds fixed, closes #1762 - Python source packages are updated with recent Cython, closes #1777
7 lines
320 B
Bash
7 lines
320 B
Bash
#!/bin/bash
|
|
#DEVBINDIR="/home/coolprop/buildbot/server-master/public_html/binaries"
|
|
#find "$DEVBINDIR" -type d ! -perm -a+rx -exec chmod -v a+rx {} \;
|
|
#find "$DEVBINDIR" -type f ! -perm -a+r -exec chmod -v a+r {} \;
|
|
DEVBINDIR="/home/coolprop/buildbot/server-master/public_html"
|
|
chmod -R a+rX,u+w,go-w "$DEVBINDIR"
|
|
exit 0 |