From 4ec5bb21330ee94362705669e83639d706ff964a Mon Sep 17 00:00:00 2001 From: silverqx Date: Sun, 5 May 2024 14:37:37 +0200 Subject: [PATCH] tools deploy Gentoo ebuild warning [skip ci] --- tools/deploy.ps1 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tools/deploy.ps1 b/tools/deploy.ps1 index 330c8522b..7b82b0917 100644 --- a/tools/deploy.ps1 +++ b/tools/deploy.ps1 @@ -210,6 +210,17 @@ function Initialize-ScriptVariables { } } +# Print warning about Gentoo ebuild +function Write-GentooEbuildWarning { + [OutputType([void])] + Param() + + NewLine + Write-Host 'Create a new tinyorm Gentoo ebuild after bumping TinyOrm version number' ` + -ForegroundColor Red + NewLine +} + # Determine whether the deploy.ps1 script was executed from the TinyORM root folder (contains # the .git/ folder) function Test-GitRoot { @@ -1733,6 +1744,9 @@ Invoke-UpdateVcpkgPorts # Merge develop to main and and push to origin/main Invoke-MergeDevelopAndDeploy -Message 'Vcpkg ports were updated and deployed successfully. 🥳' +# Warnings on what must be done after the deployment +Write-GentooEbuildWarning + <# .Synopsis The TinyORM library bumping version numbers and deployment script