mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
remove -f flags from calls to init
It doesn't mean anything anymore. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
This commit is contained in:
parent
4c3487017c
commit
87f02e53a7
@ -64,7 +64,7 @@ func benchmarkAdd(amount int64) (*testing.BenchmarkResult, error) {
|
||||
}
|
||||
}
|
||||
|
||||
initCmd := exec.Command("ipfs", "init", "-f", "-b=1024")
|
||||
initCmd := exec.Command("ipfs", "init", "-b=1024")
|
||||
setupCmd(initCmd)
|
||||
if err := initCmd.Run(); err != nil {
|
||||
benchmarkError = err
|
||||
|
||||
@ -48,7 +48,7 @@ func benchmarkAdd(amount int64) (*testing.BenchmarkResult, error) {
|
||||
cmd.Env = env
|
||||
}
|
||||
|
||||
cmd := exec.Command("ipfs", "init", "-f", "-b=1024")
|
||||
cmd := exec.Command("ipfs", "init", "-b=1024")
|
||||
setupCmd(cmd)
|
||||
if err := cmd.Run(); err != nil {
|
||||
b.Fatal(err)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user