travis bugfix: cp -a behaves differently in macs and linux

This commit is contained in:
Thomas Ferreira de Lima 2018-09-22 19:38:25 -04:00
parent 186d7c3ddc
commit 6ddecb1020
No known key found for this signature in database
GPG Key ID: 43E98870EAA0A86E
1 changed files with 1 additions and 1 deletions

View File

@ -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))';