Skip to content

Commit

Permalink
install.ps1: force copy the files
Browse files Browse the repository at this point in the history
  • Loading branch information
nullxception committed Mar 28, 2021
1 parent 390ab9a commit d738a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function Install-Mod($Name) {
if (![System.IO.Directory]::Exists($Installtarget)) {
New-Item -ItemType Directory -Path $Installtarget
}
Get-ChildItem -Path $ModulePath -Exclude $ModuleData,.module-data.bash | Copy-Item -Destination $Installtarget -Recurse
Get-ChildItem -Path $ModulePath -Exclude $ModuleData,.module-data.bash | Copy-Item -Destination $Installtarget -Recurse -Force
}
if (Get-Command 'PostInstall-Dotfiles' -errorAction SilentlyContinue) {
PostInstall-Dotfiles
Expand Down

0 comments on commit d738a39

Please sign in to comment.