From 8fa6dc8cf53221da76dc1d5c800ed43c302f5adc Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Wed, 28 Jan 2026 02:59:51 -0700 Subject: [PATCH] HII HII --- Windows-Scripts/waypoint.ps1 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Windows-Scripts/waypoint.ps1 b/Windows-Scripts/waypoint.ps1 index 6c522cd..3fbc9ba 100644 --- a/Windows-Scripts/waypoint.ps1 +++ b/Windows-Scripts/waypoint.ps1 @@ -1,2 +1,9 @@ +if ($args[0]) { $commit_message=($args -join " ") } # if arg0 exists, join all passed args with spaces +else { $commit_message="waypoint" } # or default to "waypoint" + +Write-Host "WAYPOINT!`n`tCommit Message: $commit_message`n" +# add and commit git add . -git commit -m "waypoint" \ No newline at end of file +git commit -m "$commit_message" + +Write-Host "Done :`"3" \ No newline at end of file