Skip to repository content18 lines · 295 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-27T23:28:41.112Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
remote-server
1#!/usr/bin/env bash
2
3set -xeuo pipefail
4
5# if root or if sudo/unavailable, define an empty variable
6if [ "$(id -u)" -eq 0 ]
7then maysudo=''
8else maysudo="$(command -v sudo || command -v doas || true)"
9fi
10
11deps=(
12 clang
13)
14
15$maysudo apt-get update
16$maysudo apt-get install -y "${deps[@]}"
17exit 0
18