diff --git a/install.ps1 b/install.ps1 index 9132fe2..c829fcc 100644 --- a/install.ps1 +++ b/install.ps1 @@ -138,8 +138,8 @@ function Copy-Auto() { } if ( Test-Path -Path "${target}" ) { - Write-Host "${target} alreay exist." - Write-Host "Now Backup.." + Write-Host "${target} already exists." + Write-Host "Now making a backup.." Copy-Auto "${target}" "${target}.bak" Remove-Item "${target}" -Recurse -Force Write-Host "" @@ -162,8 +162,8 @@ function Move-Auto() { } if ( Test-Path -Path "${target}" ) { - Write-Host "${target} alreay exist." - Write-Host "Now Backup.." + Write-Host "${target} already exists." + Write-Host "Now making a backup.." Move-Auto "${target}" "${target}.bak" Write-Host "" } diff --git a/install.sh b/install.sh index d68d01d..6513de3 100755 --- a/install.sh +++ b/install.sh @@ -123,8 +123,8 @@ autocp() { fi if [ -e "${target}" ]; then - echo "${target} alreay exist." - echo "Now Backup.." + echo "${target} already exists." + echo "Now making a backup.." autocp "${target}" "${target}.bak" rm -rf "${target}" echo "" @@ -143,8 +143,8 @@ automv() { fi if [ -e "${target}" ]; then - echo "${target} alreay exist." - echo "Now Backup.." + echo "${target} already exists." + echo "Now making a backup.." automv "${target}" "${target}.bak" echo "" fi