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

15 lines
143 B
Bash

#!/bin/sh
echo "$@" > /pre-install
if [ -n "$WAS_EXPORTED" ]; then
touch /was-exported
fi
if [ -f /should-fail ]; then
exit 1
fi
exit 0