Skip to content

Commit

Permalink
chore: dont fail silently
Browse files Browse the repository at this point in the history
  • Loading branch information
HashMapsData2Value committed Nov 23, 2024
1 parent 41085c4 commit 5061047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/node/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func unInstallNodeLinux() {
}

Check warning on line 129 in cmd/node/uninstall.go

View check run for this annotation

Codecov / codecov/patch

cmd/node/uninstall.go#L100-L129

Added lines #L100 - L129 were not covered by tests

unInstallCmds = append(unInstallCmds, []string{"systemctl", "daemon-reload"})
unInstallCmds = append(unInstallCmds, []string{"rm", "-rf", "/etc/systemd/system/algorand*"})
unInstallCmds = append(unInstallCmds, []string{"rm", "-r", "/etc/systemd/system/algorand*"})
unInstallCmds = append(unInstallCmds, []string{"ls", "-alh", "/etc/systemd/system/"})
unInstallCmds = append(unInstallCmds, []string{"systemctl", "daemon-reload"})
unInstallCmds = append(unInstallCmds, []string{"sleep", "5"})
Expand Down

0 comments on commit 5061047

Please sign in to comment.