Skip to content

Instantly share code, notes, and snippets.

View thomasvidas's full-sized avatar

Thomas Vidas thomasvidas

View GitHub Profile
@thomasvidas
thomasvidas / node-xcodebuild.ts
Created October 27, 2021 01:46
Typescript wrapper for xcodebuild
import { execSync, spawn, SpawnOptions } from 'child_process'
type XCodebuildOptions = {
/**
* Build the project specified by projectname.
* Required if there are multiple project files in the same directory.
*/
project: string,
/**