From 594f6c27a36827ff2443fce7b84bad4c5a5b2a50 Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Thu, 4 Apr 2024 20:15:27 +0200 Subject: [PATCH] Fixing error message when client-side assets are not up-to-date --- .github/workflows/compile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 1f23d421f..602548d78 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -65,5 +65,5 @@ jobs: if ($gitStatus) { throw ("Client-side assets are not up-to-date. Please run 'gulp rebuild' and commit the changes.`n" + - [System.String]::Join([System.Environment]::NewLine, (git status --porcelain))) + [System.String]::Join([System.Environment]::NewLine, $gitStatus)) }