From 4404eb57e447a5a177af86cfd7cf2607e682bf36 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Fri, 26 Feb 2021 15:04:40 +0100 Subject: [PATCH] [HTML5] Make editor HTML build tag scons4-proof. We used to have it like `$GODOT_VERSION` which caused inconsistencies between different scons versions when substituting it. It's now `@GODOT_VERSION@`, which is safe on both scons3 and scons4. --- misc/dist/html/editor.html | 4 ++-- platform/javascript/SCsub | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/dist/html/editor.html b/misc/dist/html/editor.html index b0b906270b..535721f418 100644 --- a/misc/dist/html/editor.html +++ b/misc/dist/html/editor.html @@ -4,7 +4,7 @@ - Godot Engine Web Editor ($GODOT_VERSION) + Godot Engine Web Editor (@GODOT_VERSION@)