mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
5 lines
66 B
Bash
5 lines
66 B
Bash
|
#!/usr/bin/env bash
|
||
|
for f in "$@" ; do
|
||
|
patch -p1 -i "$f"
|
||
|
done
|