Skip to content

Commit

Permalink
Accidentally broke the compact command in the last patch - it's fixed…
Browse files Browse the repository at this point in the history
… now.
  • Loading branch information
Iridium-IO committed Oct 16, 2017
1 parent 83bcda9 commit 4fb5e10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion WindowsApp1/Compact.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions WindowsApp1/Compact.vb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Imports System.Text.RegularExpressions
Imports Ookii.Dialogs 'Uses Ookii Dialogs for the non-archaic filebrowser dialog. http://www.ookii.org/Software/Dialogs

Public Class Compact
Dim version = "1.3.5"
Dim version = "1.3.5.1"
Private WithEvents MyProcess As Process
Private Delegate Sub AppendOutputTextDelegate(ByVal text As String)

Expand Down Expand Up @@ -361,7 +361,7 @@ Public Class Compact

Try

MyProcess.StandardInput.WriteLine("cd " + workingDir)
MyProcess.StandardInput.WriteLine("cd /d " + workingDir)
MyProcess.StandardInput.Flush()

MyProcess.StandardInput.WriteLine("") 'Required for the embedded console to show the next line in the buffer after the 'cd' command. No idea why
Expand Down
4 changes: 2 additions & 2 deletions WindowsApp1/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.3.5.0")>
<Assembly: AssemblyFileVersion("1.3.5.0")>
<Assembly: AssemblyVersion("1.3.5.1")>
<Assembly: AssemblyFileVersion("1.3.5.1")>
<Assembly: NeutralResourcesLanguage("en")>

0 comments on commit 4fb5e10

Please sign in to comment.