do not require a task id in update_project_config.sh

It's easy enough to look up the value and I'm using the script by
itself a lot to fill in missing patches.

Change-Id: I11a2f19c05cfb4fa8498e5aa6ecff4d377884d9e
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-08-29 12:49:41 -04:00
parent d737537806
commit 98b0a3cd08
1 changed files with 9 additions and 2 deletions

View File

@ -30,8 +30,15 @@ if [ -z "$team" ]; then
fi
if [ -z "$task" ]; then
usage
exit 1
echo
echo "=== Getting storyboard details ==="
echo
story_id=2002586
task_id=$(grep -e "$team" $bindir/taskids.txt | awk '{print $1}')
echo "Story: $story_id"
echo "Task : $task_id"
fi
enable_tox