Skip to content

Commit 4ec5bb2

Browse files
committed
tools deploy Gentoo ebuild warning
[skip ci]
1 parent 5b79996 commit 4ec5bb2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tools/deploy.ps1

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,17 @@ function Initialize-ScriptVariables {
210210
}
211211
}
212212

213+
# Print warning about Gentoo ebuild
214+
function Write-GentooEbuildWarning {
215+
[OutputType([void])]
216+
Param()
217+
218+
NewLine
219+
Write-Host 'Create a new tinyorm Gentoo ebuild after bumping TinyOrm version number' `
220+
-ForegroundColor Red
221+
NewLine
222+
}
223+
213224
# Determine whether the deploy.ps1 script was executed from the TinyORM root folder (contains
214225
# the .git/ folder)
215226
function Test-GitRoot {
@@ -1733,6 +1744,9 @@ Invoke-UpdateVcpkgPorts
17331744
# Merge develop to main and and push to origin/main
17341745
Invoke-MergeDevelopAndDeploy -Message 'Vcpkg ports were updated and deployed successfully. 🥳'
17351746

1747+
# Warnings on what must be done after the deployment
1748+
Write-GentooEbuildWarning
1749+
17361750
<#
17371751
.Synopsis
17381752
The TinyORM library bumping version numbers and deployment script

0 commit comments

Comments
 (0)