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 75
75
- cmd : set BUILD_FOLDER=%APPVEYOR_BUILD_FOLDER%\scripts
76
76
- cmd : set GAMEDATA_FOLDER=%APPVEYOR_BUILD_FOLDER%\GameData
77
77
# 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
79
79
- cmd : cd %DOWNLOAD_FOLDER% & dir
80
80
- cmd : 7z.exe e -p%DLL_ARCH_PASS% -o%ASSEMBLY_FOLDER% %DOWNLOAD_FOLDER%\dlls.7z
81
81
# display what are in the following directories
Original file line number Diff line number Diff line change 30
30
"dst_dir" : null ,
31
31
"exception_list" : [],
32
32
"src_dir" : " ."
33
+ },
34
+ {
35
+ "copy_list" : [],
36
+ "dst_dir" : null ,
37
+ "exception_list" : [],
38
+ "src_dir" : " Textures"
33
39
}
34
40
],
35
41
"modules" : [
Original file line number Diff line number Diff line change @@ -143,6 +143,10 @@ def encode(file_path: str):
143
143
patterns = ["*.md" ]
144
144
rt_common_dir .copy_list .extend (patterns )
145
145
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 )
146
150
147
151
package_dict [rt_common .package_name ] = rt_common
148
152
You can’t perform that action at this time.
0 commit comments