We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d83667f commit ba1f643Copy full SHA for ba1f643
1 file changed
executor/executor.go
@@ -161,6 +161,9 @@ func Run(cfg config.Config) {
161
handler = buildEventHandler(state)
162
)
163
164
+ // Chmod executor directory from 750 to 755 because of OCTRL-766
165
+ _ = syscall.Chmod(cfg.Directory, 0755)
166
+
167
// Main loop for (re)subscription. Once we're subscribed, we jump into the event loop for handling the agent.
168
for {
169
func() {
0 commit comments