dzaima / CBQN

a BQN implementation in C
GNU General Public License v3.0
329 stars 46 forks source link

Release tags do not include libraries #79

Closed BryceVandegrift closed 1 year ago

BryceVandegrift commented 1 year ago

The zip and tar.gz files for CBQNs tags do not include cbqnBytecode, replxx, or Singeli. Running make from these archives results in an error since these archives are not git repos and don't include these libraries:

fatal: not a git repository (or any of the parent directories): .git
dzaima commented 1 year ago

Not much I can do about it, as those are autogenerated by github. I suppose I could upload custom ones too, but that'd take having github releases (whereas currently it's just a git tag; that's apparently all it takes for github to start autogenerating those broken archives), and they'd still have the autogenerated things anyway afaict. Cloning the project is still the way to install it.

BryceVandegrift commented 1 year ago

Ok, I just thought that this might be something that was overlooked.