Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 42cf969436e4
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f4757bea382e
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 29, 2019

  1. Copy the full SHA
    5bfed60 View commit details
  2. newlines

    eggrobin committed Jun 29, 2019
    Copy the full SHA
    7fb380e View commit details
  3. more reordering

    eggrobin committed Jun 29, 2019
    Copy the full SHA
    0b218df View commit details
  4. Merge pull request #2231 from eggrobin/improve-releasing

    More bugs in the release script
    pleroy authored Jun 29, 2019
    Copy the full SHA
    f4757be View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 make_principia_release.ps1
10 changes: 5 additions & 5 deletions make_principia_release.ps1
Original file line number Diff line number Diff line change
@@ -46,13 +46,13 @@ if ($tag -in $(git tag)) {
write-error ("Tag $tag already exists.")
}

git checkout "$remote/master"
git tag $tag -m $mathematician

if (test-path .\Release) {
rm .\Release -recurse -force
rm .\Release -recurse
}

git checkout "$remote/master"
git tag $tag -m $mathematician

&$msbuild `
/t:Clean `
/property:Configuration=Release `
@@ -79,7 +79,7 @@ foreach ($ksp_version in $compatibility_ksp_versions) {
if (!(sls ([regex]::escape(
[text.encoding]::ascii.getstring(
[text.encoding]::unicode.getbytes(
$ksp_version)))) -encoding ASCII `
$primary_ksp_version)))) -encoding ASCII `
".\Release\GameData\Principia\ksp_plugin_adapter.dll")) {
write-error ("Configuration Release does not target $primary_ksp_version.")
}