summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMark Vainomaa <mikroskeem@mikroskeem.eu>2021-11-19 15:59:59 +0200
committerMark Vainomaa <mikroskeem@mikroskeem.eu>2021-11-19 15:59:59 +0200
commit2ff27bbc8e46c2c602474f76da322c9bef14307c (patch)
treee3cac71e5822940bd45aec0c0c024c68d26bbefa /pkgs
parentc5ab781203b224d53f1c4d2ea12b24cd8cf1e05f (diff)
downloadnixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.tar
nixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.tar.gz
nixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.tar.bz2
nixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.tar.lz
nixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.tar.xz
nixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.tar.zst
nixpkgs-2ff27bbc8e46c2c602474f76da322c9bef14307c.zip
deno: run deno fmt on update script
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/web/deno/update/librusty_v8.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/web/deno/update/librusty_v8.ts b/pkgs/development/web/deno/update/librusty_v8.ts
index a28f9f36fd4..91244cd9d6a 100644
--- a/pkgs/development/web/deno/update/librusty_v8.ts
+++ b/pkgs/development/web/deno/update/librusty_v8.ts
@@ -25,9 +25,7 @@ const getLibrustyV8Version = async (
 ) =>
   fetch(`https://github.com/${owner}/${repo}/raw/${version}/core/Cargo.toml`)
     .then((res) => res.text())
-    .then((txt) =>
-      txt.match(genValueRegExp("v8", versionRegExp))?.shift()
-    );
+    .then((txt) => txt.match(genValueRegExp("v8", versionRegExp))?.shift());
 
 const fetchArchShaTasks = (version: string, arches: Architecture[]) =>
   arches.map(