Starter stuff

This commit is contained in:
ed
2026-08-06 14:18:09 -04:00
parent 57154dc801
commit f116f02503
5 changed files with 121 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
$path_root = split-path -Path $PSScriptRoot -Parent
$path_build = join-path $path_root 'build'
$path_part_1 = join-path $path_root 'part_1'
$path_scripts = join-path $path_root 'scripts'
$path_toolchain = join-path $path_root 'toolchain'
if ((test-path $path_build) -eq $false) {
new-item -itemtype directory -path $path_build
}