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>
This commit is contained in:
Ilya Katsnelson
2023-10-30 01:39:31 +03:00
committed by David Bauer
parent 45a50a06fb
commit 2c22589782
2 changed files with 3 additions and 1 deletions

2
scripts/noop.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
# This script does nothing, intentionally.