m323/Sources/MiniProject/MiniProject.xcodeproj/rules_xcodeproj/bazel/libtool
cediackermann 7903970f08
feat(MiniProject): searchable Stadt-Rundlauf runner TUI
Add a SwiftTUI terminal app that lists race runners from the start list
and results files, with an interactive menu to sort, filter by age group,
toggle finishers vs. non-starters, and live-search by name. Parsing and
transforms are written as pure functions over the file contents.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 12:05:50 +02:00

21 lines
284 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
original_args=("$@")
while test $# -gt 0
do
case $1 in
-V)
# Xcode 15+ needs to know the version of libtool
exec libtool "${original_args[@]}"
;;
*_dependency_info.dat)
printf "\0 \0" > "$1"
break
;;
esac
shift
done