Skip to content

Commit

Permalink
nix.checks.openwrt-golden: change script mode bit
Browse files Browse the repository at this point in the history
Makes the test.sh script executable so that bash does not need to be
invoked in the build environment which is already running bash.
  • Loading branch information
djacu committed Dec 1, 2024
1 parent 3e47e3a commit 40cf34a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nix/checks/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ genAttrs
buildPhase = ''
cd tests/unit/openwrt
mkdir -p $out/tmp/ar71xx
${pkgs.bash}/bin/bash test.sh -t ar71xx -o $out
'';

installPhase = ''
./test.sh -t ar71xx -o $out
'';
});

Expand Down
Empty file modified tests/unit/openwrt/test.sh
100644 → 100755
Empty file.

0 comments on commit 40cf34a

Please sign in to comment.