From 1732598123a3c6c5b65b7e3ab17f0e682eee5108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 5 Nov 2023 22:47:26 +0100 Subject: [PATCH] Fix another chmod +x --- nix/pkgs/openwrt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/pkgs/openwrt/default.nix b/nix/pkgs/openwrt/default.nix index c2d908f..3bf2ccf 100644 --- a/nix/pkgs/openwrt/default.nix +++ b/nix/pkgs/openwrt/default.nix @@ -121,7 +121,7 @@ in rec { mkdir -p $out/usr/{bin,sbin} cp ${./usteer-info.sh} $out/usr/sbin/usteer-info.sh cp ${./usteer-stats.sh} $out/usr/bin/usteer-stats.sh - chmod +x $out/usr/bin/*.sh + chmod +x $out/usr/bin/*.sh $out/usr/sbin/*.sh ''; });