Sha256: f6e662409b5035c716b457ebd624895aba8b301e1571f85de8d7ff32deadafc9
Contents?: true
Size: 677 Bytes
Versions: 31
Compression:
Stored size: 677 Bytes
Contents
--- - name: >- Change file names to all upper case. with_items: >- {{ change_case_from }} command: >- git mv {{ item }} {{ (item.strip('/') + '.RENAME_TEMP') | quote }} - name: >- Commit temp file names in Git. command: >- git commit -m {{ "Temp file renames when upcasing on OSX" | quote }} - name: >- Change file name to desired upper case. with_items: >- {{ change_case_from }} command: >- git mv {{ (item.strip('/') + '.RENAME_TEMP') | quote }} {{ item | path_upcase_filename }} - name: >- Commit final file names in Git. command: >- git commit -m {{ "Final file renames when upcasing on OSX" | quote }}
Version data entries
31 entries across 31 versions & 1 rubygems