You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
255 B
Bash
16 lines
255 B
Bash
11 years ago
|
#!/bin/sh
|
||
|
|
||
|
OUT_DIR=$1
|
||
|
DEBUG=$2
|
||
|
|
||
|
# Change into script's own dir
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
DT_SRC=$(dirname $(dirname $(pwd)))
|
||
|
DT_BUILT="${DT_SRC}/built/DataTables"
|
||
|
. $DT_SRC/build/include.sh
|
||
|
|
||
|
# Only copying the integration files
|
||
|
rsync -r integration $OUT_DIR
|
||
|
|