Salome HOME
tbb system package is libtbb12 on UB22.04 \n Fix post_script script in case no direct...
[tools/sat_salome.git] / products / post_scripts / fix_permissions.sh
1 #!/bin/bash
2
3 echo "changing permissions..."
4 cd $PRODUCT_INSTALL
5 find . -type d | xargs -r chmod go+rx
6 find . -name \*.py | xargs -r chmod go+r
7 find . -type f -perm 640 | xargs -r chmod go+r
8 find . -type d -perm 700 | xargs -r chmod go+rx
9 find . -type f -perm 700 | xargs -r chmod go+r
10 find . -type f -perm 750 | xargs -r chmod go+rx