diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-11-18 01:45:36 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-11-18 01:45:36 -0500 |
commit | ebbbf6fd58f3baf2918eca4c44b0e0b177c9c366 (patch) | |
tree | 07eadfa8bd20d5f264ffd3b9063170c5933d04e6 /build | |
parent | e8fe550b753ced742c5084dbf851fc606ff90fb0 (diff) | |
download | SMAPI-ebbbf6fd58f3baf2918eca4c44b0e0b177c9c366.tar.gz SMAPI-ebbbf6fd58f3baf2918eca4c44b0e0b177c9c366.tar.bz2 SMAPI-ebbbf6fd58f3baf2918eca4c44b0e0b177c9c366.zip |
shorten bundle file names (#602)
Diffstat (limited to 'build')
-rw-r--r-- | build/prepare-install-package.targets | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index 5ba6ed37..dd15fb52 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -62,12 +62,12 @@ <PackageFiles Include="$(PackagePath)\**\*.*" /> </ItemGroup> <Copy SourceFiles="@(PackageFiles)" DestinationFolder="$(PackageDevPath)\%(RecursiveDir)" /> - <ZipDirectory FromDirPath="$(PackageDevPath)\bundle" ToFilePath="$(PackageDevPath)\internal\bundle.$(PackageBundlePlatform).zipped" /> + <ZipDirectory FromDirPath="$(PackageDevPath)\bundle" ToFilePath="$(PackageDevPath)\internal\$(PackageBundlePlatform).dat" /> <RemoveDir Directories="$(PackageDevPath)\bundle" /> <!-- finalise normal installer --> <ReplaceFileText FilePath="$(PackagePath)\bundle\smapi-internal\StardewModdingAPI.config.json" Search=""DeveloperMode": true" Replace=""DeveloperMode": false" /> - <ZipDirectory FromDirPath="$(PackagePath)\bundle" ToFilePath="$(PackagePath)\internal\bundle.$(PackageBundlePlatform).zipped" /> + <ZipDirectory FromDirPath="$(PackagePath)\bundle" ToFilePath="$(PackagePath)\internal\$(PackageBundlePlatform).dat" /> <RemoveDir Directories="$(PackagePath)\bundle" /> </Target> |