From 52ccc3b06c85fd76b48ad6a12765a348755a7174 Mon Sep 17 00:00:00 2001 From: MarNicGit <47538428+MarNicGit@users.noreply.github.com> Date: Thu, 9 Sep 2021 14:31:24 +0200 Subject: [PATCH 1/2] Fix typos and small grammar change --- install.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 "" } From a5fb099078853cb3d2555087ac3a9e479100bed1 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Sat, 11 Sep 2021 19:24:44 +0900 Subject: [PATCH 2/2] Fix: typo at install.sh #216 --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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