mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-29 04:16:07 +00:00
Update Go AWS SDK to the latest version
This commit is contained in:
committed by
Andrey Smirnov
parent
d08be990ef
commit
94a72b23ff
+28
@@ -0,0 +1,28 @@
|
||||
// +build codegen
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/aws/aws-sdk-go/private/model/api"
|
||||
)
|
||||
|
||||
func main() {
|
||||
glob := filepath.FromSlash(os.Args[1])
|
||||
modelPaths, err := api.ExpandModelGlobPath(glob)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "failed to expand glob, %v\n", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
_, excluded := api.TrimModelServiceVersions(modelPaths)
|
||||
|
||||
for _, exclude := range excluded {
|
||||
modelPath := filepath.Dir(exclude)
|
||||
fmt.Println("removing:", modelPath)
|
||||
os.RemoveAll(modelPath)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user