Projeto-Pindorama / pacote

A SVR4-like package manager for the 21st century.
http://pacote.pindorama.dob.jp
University of Illinois/NCSA Open Source License
4 stars 4 forks source link

Fix: Start of cmd folder and archivum/meta.go changes #7

Closed JoaoP-Vieira closed 11 months ago

JoaoP-Vieira commented 11 months ago

fix: Changed Owner Name to Username

Based on the pkgproto(1) man page.

$ find /some/folder -type d -print | ./pkgproto 
d none /some/folder 0755 João Pedro Vieira Godoy joaop
d none /some/folder/child 0755 João Pedro Vieira Godoy joaop

Changed to

$ find /some/folder -type d -print | ./pkgproto 
d none /some/folder 0755 joaop joaop
d none /some/folder/child 0755 joaop joaop

fix: Octal permissions

Simply read the (fs.FileMode).Perm() and convert to the octal format.

takusuman commented 11 months ago

Perfect. We need to get this development running again, it's been 2 years and I have done no grand progress. Will be merging in the next seconds.

takusuman commented 11 months ago

Merged #7