@ctx-core/arch-vps
Version: 
arch linux based vps configuration & deployment functions
10 lines (9 loc) • 293 B
JavaScript
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 tig__install = be_(ctx=>run(async ()=>{
	console.log('tig__install')
	// language=sh
	await ssh(ssh_url_(ctx))`yay -S tig --noconfirm`
}))