Fix creation of deps archive.
This commit is contained in:
parent
6a1fdb8620
commit
5a404438f7
|
@ -195,7 +195,7 @@ def make_deps_archive(target, full=False):
|
||||||
archive_name = "deps_{}_{}_{}.tar.xz".format(
|
archive_name = "deps_{}_{}_{}.tar.xz".format(
|
||||||
TRAVIS_OS_NAME, PLATFORM, target)
|
TRAVIS_OS_NAME, PLATFORM, target)
|
||||||
print_message("Create archive {}.", archive_name)
|
print_message("Create archive {}.", archive_name)
|
||||||
files_to_archive = [INSTALL_DIR/'INSTALL']
|
files_to_archive = [INSTALL_DIR]
|
||||||
if PLATFORM == 'native_mixed':
|
if PLATFORM == 'native_mixed':
|
||||||
files_to_archive += [HOME/'BUILD_native_static'/'INSTALL']
|
files_to_archive += [HOME/'BUILD_native_static'/'INSTALL']
|
||||||
if PLATFORM.startswith('android'):
|
if PLATFORM.startswith('android'):
|
||||||
|
|
Loading…
Reference in New Issue