Skip to content

Commit

Permalink
fix: wrong args calling boot command (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
sralloza authored Nov 24, 2021
1 parent e959aaf commit b916beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/boot.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func setupBoot(args BootArgs, bootPath string) error {
if len(args.wifiSSID) == 0 && len(args.wifiPass) == 0 {
println("Skipping setting up Wifi connection")
} else {
err = setup_wifi_connection(args.country, bootPath, args.wifiSSID, args.wifiPass)
err = setup_wifi_connection(bootPath, args.wifiSSID, args.wifiPass, args.country)
if err != nil {
return err
}
Expand Down

0 comments on commit b916beb

Please sign in to comment.