Skip to content

Commit

Permalink
feat(packages): add xcode tools
Browse files Browse the repository at this point in the history
  • Loading branch information
spywhere committed Apr 4, 2024
1 parent 6d0cf65 commit a3437da
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/xcbeautify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

set -e

if
! (command -v force_print >/dev/null 2>&1) ||
! (force_print 3 a b >/dev/null 2>&1) ||
test "$(force_print 3 a b)" != "a b";
then
printf "Please run this script through \"install.sh\" instead"
exit 1
fi

has_executable 'xcbeautify'

profile work
use_brew formula 'xcbeautify'
17 changes: 17 additions & 0 deletions packages/xcode-build-server.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

set -e

if
! (command -v force_print >/dev/null 2>&1) ||
! (force_print 3 a b >/dev/null 2>&1) ||
test "$(force_print 3 a b)" != "a b";
then
printf "Please run this script through \"install.sh\" instead"
exit 1
fi

has_executable 'xcode-build-server'

profile work
use_brew formula 'xcode-build-server'
17 changes: 17 additions & 0 deletions packages/xcodes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

set -e

if
! (command -v force_print >/dev/null 2>&1) ||
! (force_print 3 a b >/dev/null 2>&1) ||
test "$(force_print 3 a b)" != "a b";
then
printf "Please run this script through \"install.sh\" instead"
exit 1
fi

has_executable 'xcodes'

profile work
use_brew formula 'xcodes'

0 comments on commit a3437da

Please sign in to comment.