Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
updated the script to do more things
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedabahu committed Mar 26, 2024
1 parent 82a7479 commit 4a5a1b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/gcc.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ clear
# Used for super fast file extraction
Add-Type -AssemblyName System.IO.Compression.FileSystem

# Delete previously existing mingw installation which was installed using this script
if (Test-Path "C:\mingw") {
Remove-Item -Paht "C:\mingw" -Recurse -Force
}

# Setting the directory as temp
cd $env:TEMP

Expand Down
5 changes: 5 additions & 0 deletions src/gccLLVM.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ clear
# Used for super fast file extraction
Add-Type -AssemblyName System.IO.Compression.FileSystem

# Delete previously existing mingw installation which was installed using this script
if (Test-Path "C:\mingw") {
Remove-Item -Paht "C:\mingw" -Recurse -Force
}

# Setting the directory as temp
cd $env:TEMP

Expand Down

0 comments on commit 4a5a1b6

Please sign in to comment.