blob: fb59e156b5eda682e672ceecd0dd66fe2b7c0590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
#
# Copies FFmpeg binaries due to gyp limitations on how much you can cram
# into a rules action.
SOURCE=$1
DESTINATION=$2
# Our cygwin environment is very limited: "if" isn't available.
test -f $SOURCE && cp -v -f $SOURCE $DESTINATION
# Make sure we always succeed.
exit 0
|