Skip to content

Commit 3f70996

Browse files
committed
fix commit message with spaces from GitHub Action
commit message with spaces from github actions being broken
1 parent 8753bbe commit 3f70996

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
22
.env
3+
.env.sh
34
*.json
45

entrypoint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env bash
22

33
set -e
4-
node /app/github.js $@
4+
argv=(node /app/github.js "$@")
5+
cmd=$(printf '%q ' "${argv[@]}")
6+
eval $cmd

0 commit comments

Comments
 (0)