From a83c3e30f3afbe1e0008dc50f769bb06fcdf0a87 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 17 Jun 2022 08:36:58 +0200 Subject: [PATCH] Fix environment variable configuration in FAQ In bash, the variable is set using "export". --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 400c4014..0cebeeb7 100644 --- a/FAQ.md +++ b/FAQ.md @@ -103,7 +103,7 @@ You could overwrite the `adb` binary in the other program, or ask _scrcpy_ to use a specific `adb` binary, by setting the `ADB` environment variable: ```bash -set ADB=/path/to/your/adb +export ADB=/path/to/your/adb scrcpy ```