diff --git a/cd-build-project b/cd-build-project index 8a5035b..b8e5ffd 100755 --- a/cd-build-project +++ b/cd-build-project @@ -1,7 +1,3 @@ -if [ -x './build.py' ] ; then - ./build.py -elif [ -x './build.sh' ] ; then - ./build.sh -else - exit -fi +./build.py \ +|| \ +./build.sh diff --git a/cd-clone-python b/cd-clone-python deleted file mode 100755 index 52eb00e..0000000 --- a/cd-clone-python +++ /dev/null @@ -1,15 +0,0 @@ -[ "${1}" ] && REPOSITORY_FULL="${1}" || exit -REPOSITORY_NAME="$(basename ${REPOSITORY_FULL})" - -REPOSITORY_TEMP="$(mktemp --directory)" - -git clone \ --- \ -"${GITHUB_SERVER_URL}/${REPOSITORY_FULL}" \ -"${REPOSITORY_TEMP}" - -mv "${REPOSITORY_TEMP}/${REPOSITORY_NAME}" \ -/usr/local/lib/python3.*/dist-packages/ - -rm --force --recursive \ -"${REPOSITORY_TEMP}" diff --git a/cd-synchronize b/cd-synchronize-output similarity index 100% rename from cd-synchronize rename to cd-synchronize-output