Home | History | Annotate | Download | only in intellij
      1 #!/bin/sh
      2 
      3 if [ $1 == "fstat" ] && [ $2 =~ ".*/out/.*" ]; then
      4   echo "$2 - file(s) not in client view." >&2
      5   exit 0
      6 fi
      7 
      8 exec /opt/local/bin/p4 $*
      9