Skip to content

Commit 19ab632

Browse files
Return to KSP 1.3.1 and update copy-item config
1 parent d92dac6 commit 19ab632

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
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

scripts/RemoteTech-Complete.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
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": [

scripts/packager_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)