summaryrefslogtreecommitdiff
path: root/test/repo1/test-d/test-d.post-install
blob: 0e14f2a802ae8a55a2d883cefaa744aa18e8edfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

echo "$@" > /post-install

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

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

exit 0