GASATHON/scripts/setup_content.ps1

16 lines
443 B
PowerShell
Raw Normal View History

2024-10-18 12:43:22 -07:00
clear-host
$misc = join-path $PSScriptRoot 'helpers/misc.ps1'
. $misc
2024-10-18 12:43:22 -07:00
# Path setup
$path_scripts = $PSScriptRoot
$path_helpers = Join-Path $path_scripts 'helpers'
$path_root = Split-Path -Parent -Path $path_scripts
$path_project = Join-Path $path_root 'Project'
$path_content = Join-Path $path_project 'Content'
2024-10-18 12:43:22 -07:00
$url_gasathon_content = 'https://git.cozyair.dev/ed/GASATHON_Content.git'
clone-gitrepo $path_content $url_gasathon_content