You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -129,14 +129,14 @@ ui-build:
129
129
130
130
commit: lint test
131
131
$(info Generating commit message...)
132
-
export COMMIT_MESSAGE="$(shell q chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
132
+
export COMMIT_MESSAGE="$(shell kiro-cli chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only on a single line."| grep ">"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
133
133
git add .&&\
134
134
git commit -am "$${COMMIT_MESSAGE}"&&\
135
135
git push
136
136
137
137
fastcommit: fastlint
138
138
$(info Generating commit message...)
139
-
export COMMIT_MESSAGE="$(shell q chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
139
+
export COMMIT_MESSAGE="$(shell kiro-cli chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only on a single line."| grep ">"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
0 commit comments