treewide: fix broken-escape-string (#485828)

This commit is contained in:
piegames
2026-02-01 19:58:16 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ stdenv.mkDerivation (finalAttrs: {
# Yes, this is really how upstream expects packaging to look like ¯\_()_/¯.
# https://github.com/EdgeTX/edgetx/wiki/Build-Instructions-under-Ubuntu-20.04#building-companion-simulator-and-radio-simulator-libraries
for plugin in "$''\{targetsToBuild[@]''\}"
for plugin in "''${targetsToBuild[@]}"
do
# Variable modified by `get_target_build_options` from build-common.sh.
local BUILD_OPTIONS=""
@@ -20,7 +20,7 @@ let
parseUrl =
url:
let
parts = lib.match "(.+):([^/]+)\/([^/?]+)((\/|.+ref=)([^&]+))?" url;
parts = lib.match "(.+):([^/]+)/([^/?]+)((/|.+ref=)([^&]+))?" url;
ref = lib.elemAt parts 5;
in
{