mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2025-09-20 10:07:08 +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