mirror of
https://github.com/alexellis/arkade.git
synced 2022-05-07 18:22:49 +03:00
The get command downloads tools from GitHub release pages and from custom URLs using a go template to define the URL and filename according to OS and architecture. Tested with unit tests and with the two initial apps: faas-cli and kubectl. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
45 lines
1013 B
Go
45 lines
1013 B
Go
// Copyright (c) arkade author(s) 2020. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
package env
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
|
|
execute "github.com/alexellis/go-execute/pkg/v1"
|
|
)
|
|
|
|
// GetClientArch returns a pair of arch and os
|
|
func GetClientArch() (arch string, os string) {
|
|
task := execute.ExecTask{Command: "uname", Args: []string{"-m"}, StreamStdio: false}
|
|
res, err := task.Execute()
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
|
|
archResult := strings.TrimSpace(res.Stdout)
|
|
|
|
taskOS := execute.ExecTask{Command: "uname", Args: []string{"-s"}, StreamStdio: false}
|
|
resOS, errOS := taskOS.Execute()
|
|
if errOS != nil {
|
|
log.Println(errOS)
|
|
}
|
|
|
|
osResult := strings.TrimSpace(resOS.Stdout)
|
|
|
|
return archResult, osResult
|
|
}
|
|
|
|
func LocalBinary(name, subdir string) string {
|
|
home := os.Getenv("HOME")
|
|
val := path.Join(home, ".arkade/bin/")
|
|
if len(subdir) > 0 {
|
|
val = path.Join(val, subdir)
|
|
}
|
|
|
|
return path.Join(val, name)
|
|
}
|