umläute
                                            umläute
                                        
                                    btw, if i change the WAV-file (with some binary editor) to report a data chunk size of *304*, the error goes away (even if now the RIFF-header indicates the wrong...
> The bug is that we write such an odd-length file, that no padding byte is added to the end. i think *this* is the real bug. > So the...
> Except it's not a bug, we do currently write the padding byte. ah indeed. i confused myself. > It's kinda the question of, does the padding byte belong "in"...
any news on this? it's still annoying
upstream is https://github.com/pure-data/pure-data/
> Python 2.7 seriously? Python2 was sunset after years of announcements on 2020-01-01. This was 3½ years ago. please do not use Python2 any more in *any* project. apart from...
i *think* that relative paths to the distro is what I mean. e.g. ```sh $ . ├── LICENSE ├── README.md ├── mydistro │ └── src │ ├── build_dist │ ├──...
sidenote: my current workaround to this problem is to exclude the `mydist/src/custompios_path` from my repository, and instead have a wrapper-script that first creates this file (with the absolute path) and...
i guess this might work: ```diff diff --git a/src/dist_generators/dist_example/src/build_dist b/src/dist_generators/dist_example/src/build_dist index e3d3cb8..14799a7 100755 --- a/src/dist_generators/dist_example/src/build_dist +++ b/src/dist_generators/dist_example/src/build_dist @@ -5,4 +5,6 @@ export DIST_PATH=${DIR} export CUSTOM_PI_OS_PATH=$(
i guess that's the change required for the Vagrantfile: ```diff diff --git a/src/dist_generators/dist_example/src/vagrant/Vagrantfile b/src/dist_generators/dist_example/src/vagrant/Vagrantfile index 4484441..f6bfa37 100644 --- a/src/dist_generators/dist_example/src/vagrant/Vagrantfile +++ b/src/dist_generators/dist_example/src/vagrant/Vagrantfile @@ -2,7 +2,7 @@ vagrant_root = File.dirname(__FILE__) Vagrant.configure("2") do...