mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* fix: Change the git to always give a maybe, then create the error in the failure cases * fix: No wifi last * chore: Revert to older api * fix: build for sdk * fix: build for sdk * chore: update patch db * chore: use the master patch db
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
shopt -s expand_aliases
|
|
|
|
if [ "$0" != "./install-sdk.sh" ]; then
|
|
>&2 echo "Must be run from backend directory"
|
|
exit 1
|
|
fi
|
|
|
|
cargo install --bin=embassy-sdk --path=. --no-default-features --features=js_engine
|