From 3ac1ce8c668dd421ecffb5a4b171e13d54f17263 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 20 Mar 2024 18:56:16 +0100 Subject: [PATCH] Rename `powershell` util script --- scripts/Common/Config/aliae/install.ps1 | 2 +- scripts/Common/Config/powershell/{profile.ps1 => lib.ps1} | 0 scripts/Windows/Scripts/Context.ps1 | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/Common/Config/powershell/{profile.ps1 => lib.ps1} (100%) diff --git a/scripts/Common/Config/aliae/install.ps1 b/scripts/Common/Config/aliae/install.ps1 index 98690aaf..f9516d7c 100644 --- a/scripts/Common/Config/aliae/install.ps1 +++ b/scripts/Common/Config/aliae/install.ps1 @@ -1,4 +1,4 @@ #!/bin/pwsh -. "$PSScriptRoot/../powershell/profile.ps1"; +. "$PSScriptRoot/../powershell/lib.ps1"; Add-PowerShellProfileStatement -Statement "# aliae`naliae init pwsh | Invoke-Expression"; diff --git a/scripts/Common/Config/powershell/profile.ps1 b/scripts/Common/Config/powershell/lib.ps1 similarity index 100% rename from scripts/Common/Config/powershell/profile.ps1 rename to scripts/Common/Config/powershell/lib.ps1 diff --git a/scripts/Windows/Scripts/Context.ps1 b/scripts/Windows/Scripts/Context.ps1 index ddfd592b..8620d6d4 100644 --- a/scripts/Windows/Scripts/Context.ps1 +++ b/scripts/Windows/Scripts/Context.ps1 @@ -1,5 +1,5 @@ #!/bin/pwsh -. "$PSScriptRoot/../../Common/Config/powershell/profile.ps1"; +. "$PSScriptRoot/../../Common/Config/powershell/lib.ps1"; class Context { [string]$EntryPoint;