diff --git a/Dockerfile b/Dockerfile index 0994b78..be59766 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,6 @@ ENV DOTNET_CLI_TELEMETRY_OPTOUT 1 RUN apt-get update \ && apt-get -y install jq -COPY disable-deployed-build.patch /tmp/ ARG CACHEBUST=1 ENV CACHEBUST=$CACHEBUST @@ -13,8 +12,6 @@ ENV CACHEBUST=$CACHEBUST RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest | jq -r .tag_name) \ && git clone --depth=1 --single-branch -b ${OSU_VERSION} https://github.com/ppy/osu \ && cd osu \ - && curl https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/games/osu-lazer/bypass-tamper-detection.patch | git apply \ - && git apply /tmp/disable-deployed-build.patch \ && dotnet publish \ -c Release \ -r linux-x64 \ diff --git a/disable-deployed-build.patch b/disable-deployed-build.patch deleted file mode 100644 index cdc4abb..0000000 --- a/disable-deployed-build.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs -index b1269e9..efeefa6 100644 ---- a/osu.Game/OsuGameBase.cs -+++ b/osu.Game/OsuGameBase.cs -@@ -109,15 +109,12 @@ public class OsuGameBase : Framework.Game, ICanAcceptFiles - /// - public string VersionHash { get; private set; } - -- public bool IsDeployedBuild => AssemblyVersion.Major > 0; -+ public bool IsDeployedBuild => false; - - public virtual string Version - { - get - { -- if (!IsDeployedBuild) -- return @"local " + (DebugUtils.IsDebugBuild ? @"debug" : @"release"); -- - var version = AssemblyVersion; - return $@"{version.Major}.{version.Minor}.{version.Build}"; - }