mirror of
https://github.com/EvernodeXRPL/sashimono.git
synced 2026-04-29 15:38:00 +00:00
16 lines
419 B
Bash
Executable File
16 lines
419 B
Bash
Executable File
#!/bin/bash
|
|
# Sashimono cloud installer script.
|
|
# This will download, extract and install the Sashimono installer package.
|
|
# -q for non-interactive (quiet) mode
|
|
|
|
package="https://sthotpocket.blob.core.windows.net/sashimono/sashimono-installer.tar.gz"
|
|
|
|
tmp=$(mktemp -d)
|
|
cd $tmp
|
|
curl $package --output installer.tgz
|
|
tar zxf $tmp/installer.tgz --strip-components=1
|
|
rm installer.tgz
|
|
|
|
./sashimono-install.sh "$@"
|
|
|
|
rm -r $tmp |