apk-tools/test/repo1/test-c/test-c.pre-install

15 lines
143 B
Plaintext
Raw Normal View History

2010-06-15 13:30:12 +00:00
#!/bin/sh
echo "$@" > /pre-install
if [ -n "$WAS_EXPORTED" ]; then
touch /was-exported
fi
if [ -f /should-fail ]; then
exit 1
fi
exit 0