1
0

Compare commits

..

No commits in common. "ee1262e983f7a6c85c494b5d521c10fb56529e88" and "fc193afe92674da716b650d89d77d2f8412c59d3" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View File

@ -18,7 +18,7 @@ concurrency:
jobs:
build:
name: Build
runs-on: macOS-12
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1

View File

@ -92,15 +92,6 @@ func Load(localpath string, name string) (err error) {
return
}
cmd = exec.Command(Runtime, "tag", "localhost/"+name, name)
log.Debug().Msgf("%v", cmd)
raw, err = cmd.CombinedOutput()
if err != nil {
log.Debug().Err(err).Msg(string(raw))
return
}
return
}