Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
---

- name: "Go-Lang | Set codebase permissions"
  file:
    path: "{{ GOROOT }}"
    state: directory
    mode: "{{ mode_codebase }}"
    recurse: no
  changed_when: false

- name: "Go-Lang | Set workspace permissions"
  file:
    path: "{{ GOPATH }}/{{ item }}"
    state: directory
    mode: "{{ mode_workspace }}"
    recurse: no
  with_items:
  - src
  - pkg
  - bin
  changed_when: false