Compare commits
No commits in common. "245a071852f0e64e54c20a5e761965cb88bc2866" and "e1148bfdd86c45684a85007cb1d9a4a7e26402ba" have entirely different histories.
245a071852
...
e1148bfdd8
3 changed files with 3 additions and 22 deletions
|
@ -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
|
||||
|
|
|
@ -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}"
|
Loading…
Reference in a new issue