diff --git a/bin/windows/bakasable.exe b/bin/windows/bakasable.exe new file mode 100644 index 0000000..20033f9 Binary files /dev/null and b/bin/windows/bakasable.exe differ diff --git a/bin/windows/premake5.exe b/bin/windows/premake5.exe new file mode 100644 index 0000000..1a637aa Binary files /dev/null and b/bin/windows/premake5.exe differ diff --git a/path.ps1 b/path.ps1 new file mode 100644 index 0000000..2bbe13a --- /dev/null +++ b/path.ps1 @@ -0,0 +1,8 @@ +echo Searching path in env PATH +$PATH = [Environment]::GetEnvironmentVariable("PATH", "Machine") +$bakasable_path = "C:\Program Files\bakasable" +if( $PATH -notlike "*"+$bakasable_path+"*" ){ + echo Path not found in env PATH + echo Adding path + [Environment]::SetEnvironmentVariable("PATH", "$PATH;$bakasable_path", "Machine") +} \ No newline at end of file