#!/bin/sh
# Восстанавливает права на бинарники после yarn install
if [ -d node_modules/.bin ]; then
  chmod +x node_modules/.bin/* 2>/dev/null || true
fi
if [ -f node_modules/next/dist/bin/next ]; then
  chmod +x node_modules/next/dist/bin/next
fi
