mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-12-04 05:03:18 +00:00
9 lines
109 B
Plaintext
9 lines
109 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [[ $# != 2 ]]; then
|
||
|
echo "Usage: $0 <so> <interface so>" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exec cp $1 $2
|