You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 13, 2026. It is now read-only.
The installer fails to extract the starterkit when running on Linux, tested on Debian 9.11.
Using a load of hacks in debugging I managed to expand the output from failed to extract the starterkit. easiest solution is to manually download it and copy <path>./dist</path to ./source/. to the real error message of Zippy:
Unable to execute the following command '/bin/tar' '--extract' '--file=/tmp/pl-sk/pl-sk-archive.tar.gzpfOkBu' '--overwrite-dir' '--overwrite' '--gzip' '--directory' '/tmp/pl-sk/pl-sk-archive' {output: /bin/tar: '--overwrite' cannot be used with '--overwrite-dir'
Try '/bin/tar --help' or '/bin/tar --usage' for more information.
}
I suggest replacing the Zippy invocation in core/src/PatternLab/Fetch.php with a plain old call to the tar binary. The starterkits are .tar.gz files anyway so there is no need at all for an abstraction library.
The installer fails to extract the starterkit when running on Linux, tested on Debian 9.11.
Using a load of hacks in debugging I managed to expand the output from
failed to extract the starterkit. easiest solution is to manually download it and copy <path>./dist</path to ./source/.to the real error message of Zippy:I suggest replacing the Zippy invocation in
core/src/PatternLab/Fetch.phpwith a plain old call to the tar binary. The starterkits are.tar.gzfiles anyway so there is no need at all for an abstraction library.