From 8c7d22a7801b5c81f855f33e1c6af003d15649e8 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 27 Aug 2024 23:35:56 +0200 Subject: [PATCH] Rename the Windows installer script --- profiles/DerGeret/Windows/Restore.ps1 | 2 +- profiles/Generic/Windows/Install.ps1 | 2 +- scripts/Windows/OS/{Install.ps1 => Manage.ps1} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/Windows/OS/{Install.ps1 => Manage.ps1} (100%) diff --git a/profiles/DerGeret/Windows/Restore.ps1 b/profiles/DerGeret/Windows/Restore.ps1 index baa71f11..94395440 100644 --- a/profiles/DerGeret/Windows/Restore.ps1 +++ b/profiles/DerGeret/Windows/Restore.ps1 @@ -2,7 +2,7 @@ . "$PSScriptRoot/Drivers.ps1"; . "$PSScriptRoot/../../../scripts/Common/Scripts/Context.ps1"; . "$PSScriptRoot/../../../scripts/Windows/Collections/Personal.ps1" -. "$PSScriptRoot/../../../scripts/Windows/OS/Install.ps1"; +. "$PSScriptRoot/../../../scripts/Windows/OS/Manage.ps1"; function Initialize-Configuration { # Fix synchronization between Linux and Windows clock diff --git a/profiles/Generic/Windows/Install.ps1 b/profiles/Generic/Windows/Install.ps1 index 708f1d78..9df79e00 100644 --- a/profiles/Generic/Windows/Install.ps1 +++ b/profiles/Generic/Windows/Install.ps1 @@ -1,6 +1,6 @@ #!/bin/pwsh . "$PSScriptRoot/../../../scripts/Common/Scripts/Context.ps1"; -. "$PSScriptRoot/../../../scripts/Windows/OS/Install.ps1"; +. "$PSScriptRoot/../../../scripts/Windows/OS/Manage.ps1"; . "$PSScriptRoot/../../../scripts/Windows/Collections/Generic.ps1" function Restore-Apps { diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Manage.ps1 similarity index 100% rename from scripts/Windows/OS/Install.ps1 rename to scripts/Windows/OS/Manage.ps1