File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ main() {
4242 log::message " Task found with the id: $task_id "
4343
4444 export TEAMWORK_TASK_ID=$task_id
45- export TEAMWORK_PROJECT_ID=" $( teamwork::get_project_id_from_task " $task_id " ) "
45+ local -r project_id=" $( teamwork::get_project_id_from_task " $task_id " ) "
46+ export TEAMWORK_PROJECT_ID=$project_id
4647
4748 if [ " $event " == " pull_request" ] && [ " $action " == " opened" ]; then
4849 teamwork::pull_request_opened
Original file line number Diff line number Diff line change @@ -64,8 +64,7 @@ teamwork::move_task_to_column() {
6464 return
6565 fi
6666
67- local -r column_id=$( teamwork::get_matching_board_column_id $column_name )
68-
67+ local -r column_id=$( teamwork::get_matching_board_column_id " $column_name " )
6968 if [ -z " $column_id " ]; then
7069 log::message " Failed to find a matching board column for '$column_name '"
7170 return
You can’t perform that action at this time.
0 commit comments