File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 7575 - cmd : set BUILD_FOLDER=%APPVEYOR_BUILD_FOLDER%\scripts
7676 - cmd : set GAMEDATA_FOLDER=%APPVEYOR_BUILD_FOLDER%\GameData
7777 # download and extract KSP DLLs
78- - cmd : curl -fsS -o%DOWNLOAD_FOLDER%\dlls.7z https://d237kiopfuf7h0.cloudfront.net/download/KSPDLL_1_4_1 .zip
78+ - cmd : curl -fsS -o%DOWNLOAD_FOLDER%\dlls.7z https://d237kiopfuf7h0.cloudfront.net/download/KSPDLL_1_3_1 .zip
7979 - cmd : cd %DOWNLOAD_FOLDER% & dir
8080 - cmd : 7z.exe e -p%DLL_ARCH_PASS% -o%ASSEMBLY_FOLDER% %DOWNLOAD_FOLDER%\dlls.7z
8181 # display what are in the following directories
Original file line number Diff line number Diff line change 3030 "dst_dir" : null ,
3131 "exception_list" : [],
3232 "src_dir" : " ."
33+ },
34+ {
35+ "copy_list" : [],
36+ "dst_dir" : null ,
37+ "exception_list" : [],
38+ "src_dir" : " Textures"
3339 }
3440 ],
3541 "modules" : [
Original file line number Diff line number Diff line change @@ -143,6 +143,10 @@ def encode(file_path: str):
143143 patterns = ["*.md" ]
144144 rt_common_dir .copy_list .extend (patterns )
145145 rt_common .add_copyable_directory (rt_common_dir )
146+
147+ # copy texture directory
148+ common_textures = Directory ("Textures" )
149+ rt_common .add_copyable_directory (common_textures )
146150
147151 package_dict [rt_common .package_name ] = rt_common
148152
You can’t perform that action at this time.
0 commit comments