aboutsummaryrefslogtreecommitdiffstats
path: root/test/tests/filter-directory-all-tags.success
blob: 035317a05dc0e621805e40c9cea09f92bf9de778 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

. "$(cd -- "$(dirname -- "${0}")" && pwd -P)/../bootstrap"

initializeRepositories

"${BIN_MAIN}" --workdir "${DIR_TEMP}" --branch-whitelist 'master' --tags-plan all -- "${DIR_SOURCE}" '--subdirectory-filter subdir' "${DIR_DESTINATION}"

echo 'Fetching tags'
actualTags="$(getTagList "${DIR_DESTINATION}")"
expectedTags='tag-02 tag-03'
if test "${actualTags}" != "${expectedTags}"
then
	printf 'Expected tags: %s\nResulting tags: %s\n' "${expectedTags}" "${actualTags}">&2
	exit 1
fi

© 2014-2024 Faster IT GmbH | imprint | privacy policy