From 4539dd8d2cc721fd9cd58dd728d3e732d0cfd9a5 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sat, 6 Jul 2024 10:21:20 -0400 Subject: [PATCH] add version number to hugo executable file name --- bin/env.ps1 | 6 ++++-- bin/{hugo.exe => hugo-0.128.2.exe} | Bin 2 files changed, 4 insertions(+), 2 deletions(-) rename bin/{hugo.exe => hugo-0.128.2.exe} (100%) diff --git a/bin/env.ps1 b/bin/env.ps1 index e3351f8..b36a9d2 100644 --- a/bin/env.ps1 +++ b/bin/env.ps1 @@ -1,3 +1,5 @@ +# Get path of this script $Path = $PSScriptRoot -Write-Host $Path\hugo.exe -Set-Alias -Value $Path\hugo.exe -Name hugo -Scope Global \ No newline at end of file + +# Setup hugo command alias +Set-Alias -Value $Path\hugo-0.128.2.exe -Name hugo -Scope Global diff --git a/bin/hugo.exe b/bin/hugo-0.128.2.exe similarity index 100% rename from bin/hugo.exe rename to bin/hugo-0.128.2.exe