happy-juce
Version:
JUCE framework WebView components
14 lines (12 loc) • 413 B
text/typescript
const JUCE_REPOSITORY_URL = Bun.env.HAPPY_JUCE_REPOSITORY_URL ?? 'https://github.com/juce-framework/JUCE'
const JUCE_BRANCH = Bun.env.HAPPY_JUCE_BRANCH ?? 'master'
Bun.spawnSync([
'git' ,
'clone' ,
'--depth' ,
'1' ,
'--branch' ,
JUCE_BRANCH ,
JUCE_REPOSITORY_URL,
'JUCE'
], { stdio: ['ignore', 'ignore', 'ignore'] })