Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Makefile with -y flags #207

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions experimental/java/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ install-gomobile:
install-linux-dependencies:
sudo apt update
sudo snap install go --classic
sudo apt install default-jdk git
sudo apt install gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu
sudo apt install -y default-jdk git
Copy link
Member

@bonifaido bonifaido Aug 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also these two lines could be inlined into one install.

sudo apt install -y gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu

setup-vm: install-linux-dependencies install-gomobile
grep -qxF 'export PATH=$$PATH:$$HOME/go/bin' ~/.bashrc || echo 'export PATH=$$PATH:$$HOME/go/bin' >> ~/.bashrc