pluginizes every monero cli on every platform

This commit is contained in:
idk
2022-06-27 01:09:15 -04:00
parent b3e944dc66
commit dc2e392308
2 changed files with 28 additions and 0 deletions

26
build.sh Executable file
View File

@ -0,0 +1,26 @@
#! /usr/bin/env sh
here=$(dirname $(readlink -f "$0"))
cd "$here"
echo "$here"
cd linux32 && ./build.sh
cd $here
cd linux64 && ./build.sh
cd $here
cd linuxarm7 && ./build.sh
cd $here
cd linuxarm8 && ./build.sh
cd $here
cd win64 && ./build.sh
cd $here
cd win32 && ./build.sh
cd $here
cd mac64 && ./build.sh
cd $here

2
clean.sh Executable file
View File

@ -0,0 +1,2 @@
#! /usr/bin/env sh
git clean -fd