Skip to content

Commit

Permalink
Fix bug of #119 (#121)
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
  • Loading branch information
kenji-miyake authored May 31, 2021
1 parent 6423f2a commit 72e982b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup_ubuntu20.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ case $answer in

cd "$SCRIPT_DIR/ansible" || exit
if [ $noninteractive -eq 1 ]; then
ansible-playbook -i localhost, "$SCRIPT_DIR/ansible/localhost-setup-ubuntu20.04-devpc.yml" -i "$SCRIPT_DIR/inventories/local-dev.ini -e AUTOWARE_DIR=$SCRIPT_DIR" --extra-vars "yn_gpu=y"
ansible-playbook -i localhost, "$SCRIPT_DIR/ansible/localhost-setup-ubuntu20.04-devpc.yml" -i "$SCRIPT_DIR/inventories/local-dev.ini" -e AUTOWARE_DIR="$SCRIPT_DIR" --extra-vars "yn_gpu=y"
else
ansible-playbook -i localhost, "$SCRIPT_DIR/ansible/localhost-setup-ubuntu20.04-devpc.yml" -i "$SCRIPT_DIR/inventories/local-dev.ini -e AUTOWARE_DIR=$SCRIPT_DIR" --ask-become-pass
ansible-playbook -i localhost, "$SCRIPT_DIR/ansible/localhost-setup-ubuntu20.04-devpc.yml" -i "$SCRIPT_DIR/inventories/local-dev.ini" -e AUTOWARE_DIR="$SCRIPT_DIR" --ask-become-pass
fi

# shellcheck disable=SC2181
Expand Down

0 comments on commit 72e982b

Please sign in to comment.