From cebbf20a64883885e34bc05cd659b8a35165fb1c Mon Sep 17 00:00:00 2001
From: Daniel Micay
Date: Sun, 3 Jan 2021 22:43:21 -0500
Subject: [PATCH] use one liner for full /tmp workaround
---
static/install.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/static/install.html b/static/install.html
index 0d767f20..0cbc1e9e 100644
--- a/static/install.html
+++ b/static/install.html
@@ -402,8 +402,7 @@ curl -O https://releases.grapheneos.org/sunfish-factory-2020.12.12.03.zip.sig
/tmp is shared between applications and users. To use a different
temporary directory if your /tmp
doesn't have enough space available:
- mkdir tmp
-TMPDIR="$PWD/tmp" ./flash-all.sh
+ mkdir tmp && TMPDIR="$PWD/tmp" ./flash-all.sh