Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
FIX: placeholder for build version is now _REPLACE_ME_ and not DONKEY.
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeattie committed Sep 7, 2024
1 parent 8a17a9c commit f867e24
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Starship/Rockstar.Engine/RockstarEnvironment.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using System.Diagnostics;
using Rockstar.Engine.Expressions;
using Rockstar.Engine.Statements;
using Rockstar.Engine.Values;
using Debug = Rockstar.Engine.Statements.Debug;

namespace Rockstar.Engine;

Expand All @@ -14,7 +12,7 @@ public enum Scope {
public class RockstarEnvironment(IRockstarIO io) {
// This line will be automatically overwritten by GitHub Actions when the engine
// is built.
public const string VERSION = "DONKEY";
public const string VERSION = "_REPLACE_ME_";
public RockstarEnvironment(IRockstarIO io, RockstarEnvironment parent) : this(io) {
Parent = parent;
}
Expand Down

0 comments on commit f867e24

Please sign in to comment.