Skip to content

Commit

Permalink
more cli changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wiegell committed Nov 21, 2022
1 parent ae7d47d commit d8fd681
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AstroWall/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<key>CFBundleIdentifier</key>
<string>com.astro.wall.Astro-Wall</string>
<key>CFBundleShortVersionString</key>
<string>0.0.40</string>
<string>0.0.41</string>
<key>CFBundleVersion</key>
<string>0.0.40-alpha-1-g10cf671</string>
<string>0.0.41-alpha-1-gae7d47d</string>
<key>LSMinimumSystemVersion</key>
<string>11</string>
<key>CFBundleDevelopmentRegion</key>
Expand Down
5 changes: 3 additions & 2 deletions cli5/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ static void regPreRelease(UpdateManifest manifest)

// Build binaries
Console.WriteLine("Building binaries...");
runCommand("msbuild ./AstroWall.sln /property:Configuration=Release");
Console.WriteLine("Binaries built");
string buildOutput = runCommand("msbuild ./AstroWall.sln /property:Configuration=Release");
Console.WriteLine(buildOutput.Split("\n").Last());
Console.WriteLine("Binaries built.");

// Create pkgs
Console.WriteLine("Creating pkg");
Expand Down

0 comments on commit d8fd681

Please sign in to comment.