initial import of salvium submodule and associated changes (not functional)

This commit is contained in:
Some Random Crypto Guy
2025-03-14 15:38:13 +00:00
parent 0947c08265
commit a4c301a9a9
26 changed files with 9279 additions and 9 deletions

View File

@@ -6,14 +6,14 @@ repo="$1"
if [[ "x$repo" == "x" ]];
then
echo "Usage: $0 monero/wownero"
echo "Usage: $0 monero/wownero/zano/salvium"
exit 1
fi
if [[ "x$repo" != "xwownero" && "x$repo" != "xmonero" ]];
if [[ "x$repo" != "xwownero" && "x$repo" != "xmonero" && "x$repo" != "xzano" && "x$repo" != "xsalvium" ]];
then
echo "Usage: $0 monero/wownero"
echo "Invalid target given, only monero and wownero are supported targets"
echo "Usage: $0 monero/wownero/zano/salvium"
echo "Invalid target given, only monero, wownero,zano, and salvium are supported targets"
fi
if [[ ! -d "$repo" ]]