fix cd bug in ds_run, and fix ds ssh so it doesnt hang process
This commit is contained in:
@@ -14,7 +14,8 @@ enum class cMode {
|
||||
Defaults = 0,
|
||||
Interactive = 1,
|
||||
Silent = 2,
|
||||
NoBB64 = 4
|
||||
NoBB64 = 4,
|
||||
ReplaceProcess = 8 // Use exec to replace current process (dropshell exits immediately)
|
||||
};
|
||||
|
||||
inline cMode operator&(cMode lhs, cMode rhs) {return static_cast<cMode>(static_cast<int>(lhs) & static_cast<int>(rhs));}
|
||||
|
||||
Reference in New Issue
Block a user