From 56a3857ed4a2053a6bc7cc61b42e92a8a4278ead Mon Sep 17 00:00:00 2001 From: Philip Trauner Date: Sat, 7 Apr 2018 23:38:21 +0200 Subject: [PATCH] Fixed build folder permission error --- Makefile | 2 ++ scripts/debian.sh | 1 - scripts/linux-dtbs.sh | 1 - scripts/make-sd-card.sh | 1 - 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 40bdaa3..7883d6a 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,8 @@ setup: build: set -e + mkdir -p build + cd scripts ./setup-root-fs.sh diff --git a/scripts/debian.sh b/scripts/debian.sh index b63de36..1675ae6 100755 --- a/scripts/debian.sh +++ b/scripts/debian.sh @@ -1,7 +1,6 @@ #!/bin/bash set -e -mkdir -p ../build cd ../build if [ "$EUID" -ne 0 ]; then diff --git a/scripts/linux-dtbs.sh b/scripts/linux-dtbs.sh index e73eb23..2f1a5a9 100755 --- a/scripts/linux-dtbs.sh +++ b/scripts/linux-dtbs.sh @@ -2,7 +2,6 @@ set -e -mkdir -p ../build cd ../build [[ -d wallaby-linux ]] || git clone https://github.com/F-WuTS/wallaby-linux.git --depth=1 diff --git a/scripts/make-sd-card.sh b/scripts/make-sd-card.sh index bdfc08f..0316888 100755 --- a/scripts/make-sd-card.sh +++ b/scripts/make-sd-card.sh @@ -1,7 +1,6 @@ #!/bin/bash set -e -mkdir -p ../build cd ../build if [ "$EUID" -ne 0 ]