mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-04 20:51:27 +00:00
By default, files with the prefix "/bin/", "/usr/bin/" and "/usr/local/bin/" will have a new export flag "x" in the 4th byte of the flag section of the bundle Manifest. The user can override this by using a new keyword "un-export()" in the bundle definition file. E.g. un-export(/usr/bin/file2) Note: The export flag is at a bundle-file level and hence does not get written to the Full manifest. Fixes #708 Includes bat tests for the export flag feature. Also, adds an entry for the content-chroot tests to Travis. Signed-off-by: Reagan Lopez <reagan.lopez@intel.com>
10 lines
448 B
Makefile
Executable File
10 lines
448 B
Makefile
Executable File
.PHONY: check clean
|
|
|
|
check:
|
|
bats ./run.bats
|
|
|
|
CLEANDIRS = ./update ./test-chroot ./logs ./.repos ./bundles ./update ./mix-bundles ./clr-bundles ./local-yum ./results ./repodata ./local-rpms ./upstream-bundles ./local-bundles ./custom-content
|
|
CLEANFILES = ./*.log ./run.bats.trs ./yum.conf.in ./builder.conf ./mixer.state ./.{c,m}* *.pem .yum-mix.conf mixversion upstreamurl upstreamversion mixbundles
|
|
clean:
|
|
sudo rm -rf $(CLEANDIRS) $(CLEANFILES)
|