summaryrefslogtreecommitdiffstats
path: root/test/repo1/test-c/test-c.pre-install
blob: c75c644296f329affc0ba0cd2849d31839e83b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

echo "$@" > /pre-install

if [ -n "$WAS_EXPORTED" ]; then
	touch /was-exported
fi

if [ -f /should-fail ]; then
	exit 1
fi

exit 0