UNPKG

rigjs

Version:

A multi-repos dev tool based on yarn and git.Rigjs is intended to be the simplest way to develop,share and deliver codes between different developers or different projects.

9 lines (7 loc) 289 B
import print from '../print'; export function requireMacOS(): void { if (process.platform !== 'darwin') { print.error(`rig wiki currently supports macOS only (detected: ${process.platform}). Linux support is on the P5 roadmap; Windows is not planned.`); process.exit(32); } }