From ffe08502d34ec3e9a86fd355aa09d8a2bc8e5a51 Mon Sep 17 00:00:00 2001 From: prikolium-cfx <165383443+prikolium-cfx@users.noreply.github.com> Date: Wed, 1 May 2024 10:57:43 +0200 Subject: [PATCH] Update build.ps1 --- build/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.ps1 b/build/build.ps1 index 278d397..973ff46 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -16,10 +16,10 @@ Write-Host "Mount directory: $MOUNT_DIR" Get-ChildItem X:\ # Attempt to remove X: mapping; ignore errors -Remove-PSDrive -Name "X" -ErrorAction SilentlyContinue +Remove-PSDrive -Name "X" # Map X: to the defined mount directory -New-PSDrive -Name "X" -PSProvider FileSystem -Root $MOUNT_DIR -ErrorAction SilentlyContinue +New-PSDrive -Name "X" -PSProvider FileSystem -Root $MOUNT_DIR # Define more variables using the new drive mapping $DOWNLOAD_DIR = "X:\chromium_git"