Skip to content

Commit

Permalink
Update build.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
prikolium-cfx authored May 1, 2024
1 parent 6994d8e commit ffe0850
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ffe0850

Please sign in to comment.