15 lines
144 B
Plaintext
15 lines
144 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
echo "$@" > /post-install
|
||
|
|
||
|
if [ -n "$WAS_EXPORTED" ]; then
|
||
|
touch /was-exported
|
||
|
fi
|
||
|
|
||
|
if [ -f /should-fail ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exit 0
|
||
|
|