mirror of
https://github.com/Baipyrus/dotfiles.git
synced 2024-11-14 23:23:50 +00:00
cloning or pulling dotfiles repository
This commit is contained in:
parent
aeb224ef52
commit
e2797da0b7
@ -3,3 +3,14 @@ $dotfilesRepo = "$env:TMP\dotfiles"
|
|||||||
$alacrittyConfigDir = "$env:APPDATA\alacritty"
|
$alacrittyConfigDir = "$env:APPDATA\alacritty"
|
||||||
$psProfile = "$env:USERPROFILE\Documents\PowerShell\Microsoft.PowerShell_profile.ps1"
|
$psProfile = "$env:USERPROFILE\Documents\PowerShell\Microsoft.PowerShell_profile.ps1"
|
||||||
$repoUrl = "https://github.com/Baipyrus/dotfiles.git"
|
$repoUrl = "https://github.com/Baipyrus/dotfiles.git"
|
||||||
|
|
||||||
|
# Clone dotfiles repository to TMP if not already inside it
|
||||||
|
if (-not (Test-Path $dotfilesRepo))
|
||||||
|
{
|
||||||
|
Write-Host "Cloning dotfiles repository..." -ForegroundColor Cyan
|
||||||
|
git clone $repoUrl $dotfilesRepo
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
Write-Host "Pulling latest changes from dotfiles repository..." -ForegroundColor Cyan
|
||||||
|
git -C $dotfilesRepo pull
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user