diff --git a/README.md b/README.md index 414d18a9b..1568d8591 100644 --- a/README.md +++ b/README.md @@ -48,22 +48,12 @@ sudo port install lazygit Packages for Ubuntu are available via [Launchpad PPA](https://launchpad.net/~lazygit-team). -**Release builds** - ```sh sudo add-apt-repository ppa:lazygit-team/release sudo apt-get update sudo apt-get install lazygit ``` -**Development builds** - -```sh -sudo add-apt-repository ppa:lazygit-team/daily -sudo apt-get update -sudo apt-get install lazygit -``` - ### Void Linux Packages for Void Linux are available in the distro repo diff --git a/pkg/commands/git.go b/pkg/commands/git.go index 7bcc651cb..08eb78edf 100644 --- a/pkg/commands/git.go +++ b/pkg/commands/git.go @@ -628,7 +628,7 @@ func (c *GitCommand) Diff(file *File, plain bool, cached bool) string { func (c *GitCommand) ApplyPatch(patch string, flags ...string) error { c.Log.Warn(patch) - filepath := filepath.Join(c.Config.GetUserConfigDir(), utils.GetCurrentRepoName(), time.Now().Format(time.StampNano)+".patch") + filepath := filepath.Join(c.Config.GetUserConfigDir(), utils.GetCurrentRepoName(), time.Now().Format("Jan _2 15.04.05.000000000")+".patch") if err := c.OSCommand.CreateFileWithContent(filepath, patch); err != nil { return err }