Index: build.sh =================================================================== diff -u -r23e98ce23746e5744771373536a8e5918cf4743d -r32e628abcbbd3fd70866505d9f2836a6f732ef06 --- build.sh (.../build.sh) (revision 23e98ce23746e5744771373536a8e5918cf4743d) +++ build.sh (.../build.sh) (revision 32e628abcbbd3fd70866505d9f2836a6f732ef06) @@ -1,6 +1,22 @@ #!/bin/bash +########################################################################### +# +# Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file build.sh +# +# @author (last) Peter Lucia +# @date (last) 28-Aug-2020 +# @author (original) Peter Lucia +# @date (original) 02-Apr-2020 +# +############################################################################ +rm -rf dist/ python3 setup.py bdist_wheel if [ $? -ne 0 ]; then echo "Error building package. Exiting..."; exit 1; fi -echo "Success! Please distribute dist/dialin-dialin-x.y.z-py3-none-any.whl accordingly." +echo "Success! Please distribute dist/dialin-x.y.z-py3-none-any.whl accordingly."