Release environment script: correction to python shm check

This commit is contained in:
Sergey Sharybin 2012-11-05 14:50:18 +00:00
parent a1b954d608
commit 6b0c7c1e59

@ -715,7 +715,7 @@ EOF
# NOTE: this sounds strange, but make sure /dev/shm/ is writable by your user,
# otherwise syncronization primitives wouldn't be included into python
if [[ "`stat -c '%a' /dev/shm/`" != "777" ]]; then
if [[ "\`stat -c '%a' /dev/shm/\`" != "777" ]]; then
echo "Error checking syncronization primitives"
exit 1
fi