mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 02:11:19 +08:00
17 lines
212 B
Bash
Executable File
17 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2026 George Sapkin
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
for last; do :; done
|
|
|
|
case "$last" in
|
|
*-doc|*-misc|*-src|*-tests)
|
|
echo "Not stripping: $last"
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
"$@"
|