Unverified Commit d6d10fd3 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

balena-cli: pin to NodeJS 24 to avoid incompatible NodeJS version warning (#505264)

parents f4c868cc 95dcb3c8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  stdenv,
  buildNpmPackage,
  fetchFromGitHub,
  nodejs_latest,
  nodejs_24,
  versionCheckHook,
  node-gyp,
  python3,
@@ -13,10 +13,10 @@

let
  buildNpmPackage' = buildNpmPackage.override {
    nodejs = nodejs_latest;
    nodejs = nodejs_24;
  };
  node-gyp' = node-gyp.override {
    nodejs = nodejs_latest;
    nodejs = nodejs_24;
  };
in
buildNpmPackage' rec {