File tree 3 files changed +3
-5
lines changed
Background-Terminal-Setup
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Wix xmlns =" http://schemas.microsoft.com/wix/2006/wi" >
3
3
<?include $(sys.CURRENTDIR)\Config.wxi?>
4
- <Product Id =" *" Name =" $(var.ProductName)" Language =" 1033" Version =" 1.2.2 .0" Manufacturer =" shaneduffy.io" UpgradeCode =" 983054b1-dfd7-4147-b5cc-fc703cefcc1c" >
4
+ <Product Id =" *" Name =" $(var.ProductName)" Language =" 1033" Version =" 1.2.3 .0" Manufacturer =" shaneduffy.io" UpgradeCode =" 983054b1-dfd7-4147-b5cc-fc703cefcc1c" >
5
5
<Package InstallerVersion =" 200" InstallPrivileges =" elevated" Compressed =" yes" InstallScope =" perMachine" Description =" $(var.ProductName)" />
6
6
7
7
<MajorUpgrade DowngradeErrorMessage =" A newer version of Background Terminal is already installed." />
Original file line number Diff line number Diff line change 7
7
<UseWPF >true</UseWPF >
8
8
<ApplicationIcon >background-terminal.ico</ApplicationIcon >
9
9
<Platforms >x86;x64</Platforms >
10
- <Version >1.2.2 </Version >
10
+ <Version >1.2.3 </Version >
11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
Original file line number Diff line number Diff line change @@ -405,16 +405,14 @@ private void SendCommandBGT(string command)
405
405
406
406
private void SendCommand ( string command )
407
407
{
408
-
409
-
410
408
// Handle SSH mode
411
409
if ( _sshMode )
412
410
{
413
411
_terminalData . Add ( DirectoryPrefixCommand ( command ) ) ;
414
412
SendCommandSSH ( DirectoryPrefixCommand ( command ) ) ;
415
413
416
414
if ( command . ToLower ( ) . StartsWith ( "cd" ) )
417
- _sshCurrentDirectory = SendCommandSSH ( command + " && pwd" , true ) ;
415
+ _sshCurrentDirectory = SendCommandSSH ( DirectoryPrefixCommand ( command ) + " && pwd" , true ) ;
418
416
}
419
417
420
418
// Background-Terminal application commands
You can’t perform that action at this time.
0 commit comments