UNPKG

@ctx-core/arch-vps

Version:

arch linux based vps configuration & deployment functions

10 lines (9 loc) 303 B
import { be_ } from 'ctx-core/be' import { run } from 'ctx-core/run' import { ssh } from 'zx' import { ssh_url_ } from '../ssh_url/index.js' export const git__install = be_(ctx=>run(async ()=>{ console.log('git__install') // language=sh await ssh(ssh_url_(ctx))`sudo pacman -Syu --noconfirm git` }))