Skip to content

Commit

Permalink
Enforce the macOS sandbox script to use /bin/bash instead of /usr/bin…
Browse files Browse the repository at this point in the history
…/env bash for a more consistent experience
  • Loading branch information
kit-ty-kate committed Feb 27, 2023
1 parent 652474c commit 8815afe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions master_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ users)
* Get rid of OPAM_USER_PATH_RO (never used on macOS and no longer needed on Linux) [#4795 @kit-ty-kate]
* Print error message if command doesn't exist [#4971 @kit-ty-kat - fix #4112]
* Resolve symlink for `ccache` directory [#5267 @rjbou - fix #5194]
* Enforce the macOS sandbox script to use /bin/bash instead of /usr/bin/env bash for a more consistent experience [#5451 @kit-ty-kate]

## VCS
* Pass --depth=1 to git-fetch in the Git repo backend [#4442 @dra27]
Expand Down
2 changes: 1 addition & 1 deletion src/state/shellscripts/sandbox_exec.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -ue

POL='(version 1)(allow default)(deny network*)(deny file-write*)'
Expand Down

0 comments on commit 8815afe

Please sign in to comment.