mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* wip * overhaul boot process * wip: new registry * wip * wip * wip * wip * wip * wip * os registry complete * ui fixes * fixes * fixes * more fixes * fix merkle archive
16 lines
312 B
Bash
Executable File
16 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
set -e
|
|
shopt -s expand_aliases
|
|
|
|
web="../web/dist/static"
|
|
[ -d "$web" ] || mkdir -p "$web"
|
|
|
|
if [ -z "$PLATFORM" ]; then
|
|
export PLATFORM=$(uname -m)
|
|
fi
|
|
|
|
cargo install --path=./startos --no-default-features --features=cli,docker,registry --bin start-cli --locked
|