mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 15:30:36 +02:00
9 lines
177 B
Plaintext
9 lines
177 B
Plaintext
|
#!/bin/sh
|
||
|
if [ ! -z "$SOLIDIFY_AGAIN" ]; then
|
||
|
echo "$0: found only myself" 2>&1
|
||
|
exit 1
|
||
|
fi
|
||
|
export SOLIDIFY_AGAIN=1
|
||
|
PATH=../../cae-tools/solidify:$PATH
|
||
|
exec solidify "$@"
|