mirror of https://github.com/liamg/aminal.git
Fix various gofmt issues
Not sure how some of these crept in.
This commit is contained in:
parent
043dc161ce
commit
7e248cb1d4
|
@ -5,18 +5,18 @@ package main
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"errors"
|
"errors"
|
||||||
"golang.org/x/sys/windows/registry"
|
|
||||||
"os"
|
|
||||||
"os/user"
|
|
||||||
"strings"
|
|
||||||
"path/filepath"
|
|
||||||
"github.com/liamg/aminal/windows/winutil"
|
|
||||||
"github.com/liamg/aminal/generated-src/installer/data"
|
|
||||||
"text/template"
|
|
||||||
"io/ioutil"
|
|
||||||
"os/exec"
|
|
||||||
"syscall"
|
|
||||||
"flag"
|
"flag"
|
||||||
|
"github.com/liamg/aminal/generated-src/installer/data"
|
||||||
|
"github.com/liamg/aminal/windows/winutil"
|
||||||
|
"golang.org/x/sys/windows/registry"
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"os/exec"
|
||||||
|
"os/user"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"syscall"
|
||||||
|
"text/template"
|
||||||
)
|
)
|
||||||
|
|
||||||
const Version = "VERSION"
|
const Version = "VERSION"
|
||||||
|
|
|
@ -19,6 +19,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/liamg/aminal/windows/winutil"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
@ -26,7 +27,6 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"github.com/liamg/aminal/windows/winutil"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Version struct {
|
type Version struct {
|
||||||
|
|
Loading…
Reference in New Issue