From 0c9ede14114514a06b99a8ec54c2f088d33014b7 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Mon, 18 Mar 2019 22:38:13 +0100 Subject: [PATCH 1/2] Update README.md After adding the apt source list, we need to execute apt-get update. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 753fade..b9e02b2 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ Install the required dependencies, this assumes you are running Debian 10 echo "deb http://storage.googleapis.com/bazel-apt stable jdk1.8" | \ sudo tee /etc/apt/sources.list.d/bazel.list wget -qO - https://bazel.build/bazel-release.pub.gpg | sudo apt-key add - +sudo apt-get update sudo apt-get install -qy python-typing python-clang-7 libclang-7-dev sudo apt-get install -qy build-essential linux-libc-dev bazel ``` From 278bd5a23808fabbc5d754266768a015a6de6908 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Mon, 18 Mar 2019 22:39:32 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9e02b2..0bfa0cc 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ sudo apt-get install -qy build-essential linux-libc-dev bazel Clone and run the build: ```bash -git clone github.com/google/sandboxed-api && cd sandboxed-api +git clone https://github.com/google/sandboxed-api && cd sandboxed-api bazel build ... ```