mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-01 15:00:32 -08:00
Merge branch 'master' of https://github.com/black7375/Firefox-UI-Fix
This commit is contained in:
commit
6559d6eba5
2 changed files with 8 additions and 8 deletions
|
|
@ -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 ""
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue