summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorIlya Katsnelson <me@0upti.me>2023-10-30 01:39:31 +0300
committerDavid Bauer <mail@david-bauer.net>2023-11-03 23:06:07 +0100
commit2c22589782d74e9db5d79f72b259df08beb5ef7a (patch)
tree54e23f0d93967ea0f8c5c78bf8ab6fd588b43308 /scripts
parent45a50a06fb3f39ea70936dd967a74e6e96f0cd89 (diff)
downloadopenwrt-2c22589782d74e9db5d79f72b259df08beb5ef7a.tar.gz
openwrt-2c22589782d74e9db5d79f72b259df08beb5ef7a.tar.bz2
openwrt-2c22589782d74e9db5d79f72b259df08beb5ef7a.zip
build: replace `true` with a custom noop script
`true` might be a shell built-in, or simply not accessible in the hardcoded locations. Replace it with a custom script that does nothing. Signed-off-by: Ilya Katsnelson <me@0upti.me>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/noop.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/noop.sh b/scripts/noop.sh
new file mode 100755
index 0000000000..96b71fe3bf
--- /dev/null
+++ b/scripts/noop.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+# This script does nothing, intentionally.