Skip to content

Commit 121e87d

Browse files
committed
update copy script to work on osx too
1 parent 55fcdd0 commit 121e87d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/copy_headers.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ echo 'Copying files from '$SRC' to '$DST
2727
rm -rf $DST
2828

2929
mkdir -p $DST/tensorflow
30-
cp -R $SRC/tensorflow/core/ $DST/tensorflow
31-
cp -R $SRC/tensorflow/cc/ $DST/tensorflow
30+
cp -R $SRC/tensorflow/core $DST/tensorflow
31+
cp -R $SRC/tensorflow/cc $DST/tensorflow
3232

3333
mkdir -p $DST/third_party
34-
cp -R $SRC/third_party/eigen3/ $DST/third_party
34+
cp -R $SRC/third_party/eigen3 $DST/third_party
3535

36-
cp -R $SRC/bazel-genfiles/tensorflow/cc/ $DST/tensorflow
37-
cp -R $SRC/bazel-genfiles/tensorflow/core/ $DST/tensorflow
36+
cp -R $SRC/bazel-genfiles/tensorflow/cc $DST/tensorflow
37+
cp -R $SRC/bazel-genfiles/tensorflow/core $DST/tensorflow
3838

3939
mkdir -p $DST/external/eigen_archive
40-
cp -R $SRC/bazel-tensorflow/external/eigen_archive/eigen-eigen*/ $DST/external/eigen_archive
40+
cp -R $SRC/bazel-tensorflow/external/eigen_archive/eigen-eigen* $DST/external/eigen_archive
4141

4242

4343

0 commit comments

Comments
 (0)