about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-02-11 00:03:49 +0100
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2024-02-11 00:03:49 +0100
commit68dd75315c31a8ebd089089455423354418668af (patch)
tree4d7d3c22caadcb5e2bff6e448d8cbb73e23627c8 /pkgs/applications/editors
parent7eb4d990bd9739510995d71dade1467e07fb9404 (diff)
downloadnixlib-68dd75315c31a8ebd089089455423354418668af.tar
nixlib-68dd75315c31a8ebd089089455423354418668af.tar.gz
nixlib-68dd75315c31a8ebd089089455423354418668af.tar.bz2
nixlib-68dd75315c31a8ebd089089455423354418668af.tar.lz
nixlib-68dd75315c31a8ebd089089455423354418668af.tar.xz
nixlib-68dd75315c31a8ebd089089455423354418668af.tar.zst
nixlib-68dd75315c31a8ebd089089455423354418668af.zip
treewide: add system to "Unsupported system" throws
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix
index 8bb4a5f5ce1a..b6273ff3a584 100644
--- a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix
@@ -5,7 +5,7 @@ let
   arch =
     if stdenv.isLinux then "linux"
     else if stdenv.isDarwin then "darwin"
-    else throw "Unsupported platform";
+    else throw "Unsupported system: ${stdenv.system}";
   analysisDir = "server/analysis_binaries/${arch}";
 in
 vscode-utils.buildVscodeMarketplaceExtension rec {