op-packages/golang/go-strip-helper
github-actions[bot] f3b1399f54 🎈 Sync 2026-06-17 11:53:25
2026-06-17 11:53:25 +08:00

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
"$@"