Skip to content

Commit

Permalink
Refine script
Browse files Browse the repository at this point in the history
  • Loading branch information
jondy committed Jul 10, 2020
1 parent 251468e commit 8573959
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/function-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ PLATFORM_INDEX=$(pwd)/platforms/index.json
name=${name//./\/}
mkdir -p ${name}
if [[ "${PLATFORM}" == "win_amd64" ]] ; then
cp ${x}/pytransform.* ${name}
for y in ${x}/pytransform.* ; do
[[ -f "${y}" ]] && cp ${y} ${name}
done
else
ln -s ${x}/pytransform.* ${name}
fi
Expand Down

0 comments on commit 8573959

Please sign in to comment.