From 6ddecb1020d9f16b69012a8b9c1b88205c4f5cd6 Mon Sep 17 00:00:00 2001 From: Thomas Ferreira de Lima Date: Sat, 22 Sep 2018 19:38:25 -0400 Subject: [PATCH] travis bugfix: cp -a behaves differently in macs and linux --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5c7841c51..42f0d13f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -223,7 +223,7 @@ script: python setup.py bdist_wheel; python setup.py install; mkdir -p deploy/dist-pymod; - cp -a dist/ deploy/dist-pymod; + cp -a dist/* deploy/dist-pymod/; python -c 'import klayout.db as db; print(dir(db))'; python -c 'import klayout.rdb as rdb; print(dir(rdb))'; python -c 'import klayout.tl as tl; print(dir(tl))';