Skip to content

Commit

Permalink
Allow all
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Oct 13, 2024
1 parent fe2b27b commit f07c97c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,18 +226,18 @@ jobs:
run: >
sudo sqlite3 '/Library/Application Support/com.apple.TCC/TCC.db' "INSERT or REPLACE INTO access
( service, client, client_type, auth_value, auth_reason, auth_version, flags ) VALUES
( 'kTCCServiceBluetoothAlways', 'com.apple.Terminal', 0, 0, 4, 1, 0),
( 'kTCCServiceBluetoothPeripheral', 'com.apple.Terminal', 0, 0, 4, 1, 0),
( 'kTCCServiceBluetoothWhileInUse', 'com.apple.Terminal', 0, 0, 4, 1, 0),
( 'kTCCServiceBluetoothAlways', '/bin/bash', 1, 2, 0, 1, 0 ),
( 'kTCCServiceBluetoothPeripheral', '/bin/bash', 1, 2, 0, 1, 0 ),
( 'kTCCServiceBluetoothWhileInUse', '/bin/bash', 1, 2, 0, 1, 0 ),
( 'kTCCServiceBluetoothAlways', '/usr/local/opt/runner/runprovisioner.sh', 1, 2, 0, 1, 0 ),
( 'kTCCServiceBluetoothPeripheral', '/usr/local/opt/runner/runprovisioner.sh', 1, 2, 0, 1, 0 ),
( 'kTCCServiceBluetoothWhileInUse', '/usr/local/opt/runner/runprovisioner.sh', 1, 2, 0, 1, 0 ),
( 'kTCCServiceBluetoothAlways', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 4, 1, 0),
( 'kTCCServiceBluetoothPeripheral', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 4, 1, 0),
( 'kTCCServiceBluetoothWhileInUse', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 4, 1, 0)"
( 'kTCCServiceBluetoothAlways', 'com.apple.Terminal', 0, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothPeripheral', 'com.apple.Terminal', 0, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothWhileInUse', 'com.apple.Terminal', 0, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothAlways', '/bin/bash', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothPeripheral', '/bin/bash', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothWhileInUse', '/bin/bash', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothAlways', '/usr/local/opt/runner/runprovisioner.sh', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothPeripheral', '/usr/local/opt/runner/runprovisioner.sh', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothWhileInUse', '/usr/local/opt/runner/runprovisioner.sh', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothAlways', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothPeripheral', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 4, 1, 0 ),
( 'kTCCServiceBluetoothWhileInUse', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 4, 1, 0 )"
- run: sqlite3 '/Library/Application Support/com.apple.TCC/TCC.db' 'select * from access'
- uses: actions/checkout@v4
- name: Install lcov
Expand Down

0 comments on commit f07c97c

Please sign in to comment.