comparison bin/chef @ 0:a212a3f2e3ee

Initial commit.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 21 Dec 2013 14:44:02 -0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a212a3f2e3ee
1 #!/bin/sh
2
3 CHEF_DIR=`dirname $0`
4 if `hash readlink 2>&-`; then
5 LINKED_EXE=`readlink $0`
6 if [ -n "$LINKED_EXE" ]; then
7 CHEF_DIR=`dirname $LINKED_EXE`
8 fi
9 fi
10 python $CHEF_DIR/../chef.py $@
11