22 lines
610 B
Bash
Executable File
22 lines
610 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
|
|
# download the sos binary
|
|
SOS="${SCRIPT_DIR}/temp/sos"
|
|
mkdir -p "${SCRIPT_DIR}/temp"
|
|
|
|
curl -L -o "${SOS}" https://getbin.xyz/sos
|
|
chmod +x "${SOS}"
|
|
|
|
# upload the dropshell-build script
|
|
"${SOS}" upload "getbin.xyz" "${SCRIPT_DIR}/src/dropshell-build" "dropshell-build:latest"
|
|
|
|
# upload the install requirements script
|
|
"${SOS}" upload "getbin.xyz" "${SCRIPT_DIR}/src/dropshell-build-install-requirements" "dropshell-build-install-requirements:latest"
|
|
|
|
# clean up
|
|
rm -rf "${SCRIPT_DIR}/temp"
|
|
echo "Done" |