mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2026-05-11 20:43:18 +00:00
Fix stupid syntax.
This commit is contained in:
parent
6154ec662d
commit
45e4578f79
|
|
@ -31,7 +31,7 @@ type AptPackage struct {
|
||||||
|
|
||||||
type AptPackages []AptPackage
|
type AptPackages []AptPackage
|
||||||
|
|
||||||
func (ps *AptPackages) serialize() string {
|
func (ps AptPackages) serialize() string {
|
||||||
tokens := []string{}
|
tokens := []string{}
|
||||||
for _, p := range ps {
|
for _, p := range ps {
|
||||||
tokens = append(tokens, p.Name+"="+p.Version)
|
tokens = append(tokens, p.Name+"="+p.Version)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue