Merge pull request #83 from IronRookieCoder/fix/issue-37-bash-autobg
fix(bash): wake foreground task after auto-backgrounding
This commit is contained in:
commit
8e52334f0a
|
|
@ -1094,6 +1094,11 @@ async function* runShellCommand({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
backgroundShellId = foregroundTaskId;
|
backgroundShellId = foregroundTaskId;
|
||||||
|
const resolve = resolveProgress;
|
||||||
|
if (resolve) {
|
||||||
|
resolveProgress = null;
|
||||||
|
resolve();
|
||||||
|
}
|
||||||
logEvent(eventName, {
|
logEvent(eventName, {
|
||||||
command_type: getCommandTypeForLogging(command),
|
command_type: getCommandTypeForLogging(command),
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user