This commit is contained in:
parent
1e8c3cd523
commit
f77c3350d5
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,6 +4,7 @@ build/
|
|||||||
**/cmake-build-*/
|
**/cmake-build-*/
|
||||||
output/
|
output/
|
||||||
**/openssl-*/
|
**/openssl-*/
|
||||||
|
**/build.*/
|
||||||
|
|
||||||
|
|
||||||
# Compiled Object files
|
# Compiled Object files
|
||||||
|
22
publish_scripts_only.sh
Executable file
22
publish_scripts_only.sh
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/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"
|
@ -1 +0,0 @@
|
|||||||
Subproject commit f75061c3b6499ba3b616a04d913c0a4a3c79cbe2
|
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user