mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
[250203] [dstore][shells]%var% is substituted to null in Unix shell
This commit is contained in:
parent
faf01116b4
commit
74794df3e3
1 changed files with 2 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
||||||
* David McKnight (IBM) - [196624] dstore miner IDs should be String constants rather than dynamic lookup
|
* David McKnight (IBM) - [196624] dstore miner IDs should be String constants rather than dynamic lookup
|
||||||
* Noriaki Takatsu (IBM) - [220126] [dstore][api][breaking] Single process server for multiple clients
|
* Noriaki Takatsu (IBM) - [220126] [dstore][api][breaking] Single process server for multiple clients
|
||||||
* David McKnight (IBM) [224906] [dstore] changes for getting properties and doing exit due to single-process capability
|
* David McKnight (IBM) [224906] [dstore] changes for getting properties and doing exit due to single-process capability
|
||||||
|
* David McKnight (IBM) [250203] [dstore][shells]%var% is substituted to null in Unix shell
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.dstore.universal.miners.command;
|
package org.eclipse.rse.internal.dstore.universal.miners.command;
|
||||||
|
@ -797,7 +798,7 @@ public class CommandMinerThread extends MinerThread
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} //If the current char is a %, then simply look for a matching %
|
} //If the current char is a %, then simply look for a matching %
|
||||||
else if (c == '%')
|
else if (c == '%' && _isWindows)
|
||||||
{
|
{
|
||||||
int next = theValue.toString().indexOf("%", index + 1); //$NON-NLS-1$
|
int next = theValue.toString().indexOf("%", index + 1); //$NON-NLS-1$
|
||||||
if (next > 0)
|
if (next > 0)
|
||||||
|
|
Loading…
Add table
Reference in a new issue