Skip to content

Commit

Permalink
Merge pull request #15 from sigwinhq/fix/macos-make
Browse files Browse the repository at this point in the history
Fix missing make commands on macOS
  • Loading branch information
brankol authored May 2, 2022
2 parents 05e5cfc + 2e60b2d commit 1e98b92
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions resources/Common/Platform/Darwin/default.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
help: ## Prints this help
@grep --no-filename --extended-regexp '^ *[-a-zA-Z0-9_/]+ *:.*## ' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[45m%-20s\033[0m %s\n", $$1, $$2}'

define permissions
setfacl -dRm m:rwX $(1)
setfacl -Rm m:rwX $(1)
setfacl -dRm u:`whoami`:rwX $(1)
setfacl -Rm u:`whoami`:rwX $(1)
setfacl -dRm u:${RUNNER}:rwX $(1)
setfacl -Rm u:${RUNNER}:rwX $(1)
setfacl -dRm u:root:rwX $(1)
setfacl -Rm u:root:rwX $(1)
endef

0 comments on commit 1e98b92

Please sign in to comment.