From 115eb719dba4da0db5412482fb100bce5bd7cc4d Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Wed, 7 Nov 2018 14:16:48 -0800 Subject: [PATCH] Use the new thirdparty directory directly Instead of using thirdparty/prod Signed-off-by: Philippe Ombredanne --- etc/release/build-plugins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/release/build-plugins.sh b/etc/release/build-plugins.sh index 8b0ce1cad48..6b6c5945e3d 100755 --- a/etc/release/build-plugins.sh +++ b/etc/release/build-plugins.sh @@ -16,6 +16,6 @@ for i in `ls plugins` pushd plugins/$i rm -rf dist build python setup.py release - cp `find dist/ -type f` ../../thirdparty/prod/ + cp `find dist/ -type f` ../../thirdparty/ popd done