Skip to content

Commit 1b65090

Browse files
committed
Release 2.6.1
2 parents dd17ae6 + 7dc08fd commit 1b65090

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

agent/agent.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,8 @@ func (a *Agent) CmdV2(c *CmdOptions) CmdStatus {
306306
} else if c.IsExecutable {
307307
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, c.Command) // c.Shell: bin + c.Command: args as one string
308308
} else {
309-
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, "-c", c.Command) // /bin/bash -c 'ls -l /var/log/...'
309+
commandArray := append(strings.Fields(c.Shell), "-c", c.Command)
310+
envCmd = gocmd.NewCmdOptions(cmdOptions, commandArray[0], commandArray[1:]...) // /bin/bash -c 'ls -l /var/log/...'
310311
}
311312

312313
var stdoutBuf bytes.Buffer

build/rmm.exe.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<assemblyIdentity
44
type="win32"
55
name="TacticalRMM"
6-
version="2.6.0.0"
6+
version="2.6.1.0"
77
processorArchitecture="*"/>
88
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
99
<security>

build/setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "Tactical RMM Agent"
2-
#define MyAppVersion "2.6.0"
2+
#define MyAppVersion "2.6.1"
33
#define MyAppPublisher "AmidaWare Inc"
44
#define MyAppURL "https://github.com/amidaware"
55
#define MyAppExeName "tacticalrmm.exe"

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
)
2626

2727
var (
28-
version = "2.6.0"
28+
version = "2.6.1"
2929
log = logrus.New()
3030
logFile *os.File
3131
)

versioninfo.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"FileVersion": {
44
"Major": 2,
55
"Minor": 6,
6-
"Patch": 0,
6+
"Patch": 1,
77
"Build": 0
88
},
99
"ProductVersion": {
1010
"Major": 2,
1111
"Minor": 6,
12-
"Patch": 0,
12+
"Patch": 1,
1313
"Build": 0
1414
},
1515
"FileFlagsMask": "3f",
@@ -22,14 +22,14 @@
2222
"Comments": "",
2323
"CompanyName": "AmidaWare Inc",
2424
"FileDescription": "Tactical RMM Agent",
25-
"FileVersion": "v2.6.0.0",
25+
"FileVersion": "v2.6.1.0",
2626
"InternalName": "tacticalrmm.exe",
2727
"LegalCopyright": "Copyright (c) 2023 AmidaWare Inc",
2828
"LegalTrademarks": "",
2929
"OriginalFilename": "tacticalrmm.exe",
3030
"PrivateBuild": "",
3131
"ProductName": "Tactical RMM Agent",
32-
"ProductVersion": "v2.6.0.0",
32+
"ProductVersion": "v2.6.1.0",
3333
"SpecialBuild": ""
3434
},
3535
"VarFileInfo": {

0 commit comments

Comments
 (0)