mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
256 B
11 lines
256 B
14 years ago
|
#!/bin/sh
|
||
|
|
||
|
# A wrapper script to call 'linux-tick-processor'.
|
||
|
|
||
|
# Known issues on FreeBSD:
|
||
|
# No ticks from C++ code.
|
||
|
# You must have d8 built and in your path before calling this.
|
||
|
|
||
|
tools_path=`cd $(dirname "$0");pwd`
|
||
|
$tools_path/linux-tick-processor "$@"
|