treewide: fix broken-escape-string (#485828)
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user