mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-05 17:42:32 +00:00
10 lines
222 B
Bash
10 lines
222 B
Bash
#!/usr/bin/env bash
|
|
cat $TERMUX_PKG_SRCDIR/Telegram/build/docker/centos_env/Dockerfile | awk '
|
|
/ git init td / { s = 1; }
|
|
/ git fetch / {
|
|
if (s) {
|
|
print;
|
|
exit;
|
|
}
|
|
}' | sed -E 's@.*?\s([0-9a-fA-F]{40})\s.*@\1@g'
|