mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +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
|