Age | Commit message (Collapse) | Author |
|
> Come on! There's nothing to be afraid of. Come here, let's talk.
* Add auto remove the previous leftover docker image on successful build.
* Fix leftover pacman cache on docker build for the final image.
|
|
|
|
* Add `tomato status` command alias to `tomato list status` (not
documented);
* Add `tomato` with no verb to attach the running tomato image, if
any, to the current console (not documented);
* Fix some completions;
* Fix `tomato list status` error if no database exists.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Quick fix issue:
tomato tried to be too smart while updating the packages, and forgot the previous packages.
This feature is now disabled, the tomato refresh command will rebuild the whole repository for now.
To re-register the previous packages run the following command:
```sh
for package in `sudo tomato list | sed -E 's:\r\n:\n'`;
do
echo "Re-register $package"
tomato add "$package"
done
```
|
|
Fix some issuer:
* pikaur not callable;
* mirrormist not shared with the host.
|
|
|