Files
CoolProp/dev/scripts/binPerms.sh
Jorrit Wronski fe7c8f1805 Feature/recent compilers (#1783)
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
2019-01-11 11:42:55 +01:00

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