Skip to content

Commit

Permalink
Return to KSP 1.3.1 and update copy-item config
Browse files Browse the repository at this point in the history
  • Loading branch information
KSP-TaxiService committed Jun 12, 2018
1 parent d92dac6 commit 19ab632
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
- cmd: set BUILD_FOLDER=%APPVEYOR_BUILD_FOLDER%\scripts
- cmd: set GAMEDATA_FOLDER=%APPVEYOR_BUILD_FOLDER%\GameData
# download and extract KSP DLLs
- cmd: curl -fsS -o%DOWNLOAD_FOLDER%\dlls.7z https://d237kiopfuf7h0.cloudfront.net/download/KSPDLL_1_4_1.zip
- cmd: curl -fsS -o%DOWNLOAD_FOLDER%\dlls.7z https://d237kiopfuf7h0.cloudfront.net/download/KSPDLL_1_3_1.zip
- cmd: cd %DOWNLOAD_FOLDER% & dir
- cmd: 7z.exe e -p%DLL_ARCH_PASS% -o%ASSEMBLY_FOLDER% %DOWNLOAD_FOLDER%\dlls.7z
# display what are in the following directories
Expand Down
6 changes: 6 additions & 0 deletions scripts/RemoteTech-Complete.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
"dst_dir": null,
"exception_list": [],
"src_dir": "."
},
{
"copy_list": [],
"dst_dir": null,
"exception_list": [],
"src_dir": "Textures"
}
],
"modules": [
Expand Down
4 changes: 4 additions & 0 deletions scripts/packager_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ def encode(file_path: str):
patterns = ["*.md"]
rt_common_dir.copy_list.extend(patterns)
rt_common.add_copyable_directory(rt_common_dir)

# copy texture directory
common_textures = Directory("Textures")
rt_common.add_copyable_directory(common_textures)

package_dict[rt_common.package_name] = rt_common

Expand Down

0 comments on commit 19ab632

Please sign in to comment.