deepflow 0.1.62 → 0.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/deepflow-auto.sh +3 -1
- package/package.json +1 -1
package/bin/deepflow-auto.sh
CHANGED
|
@@ -215,8 +215,9 @@ run_claude_monitored() {
|
|
|
215
215
|
claude_pid=$!
|
|
216
216
|
fi
|
|
217
217
|
|
|
218
|
-
# Read the FIFO line-by-line
|
|
218
|
+
# Read the FIFO line-by-line (set +e to tolerate EINTR from signals)
|
|
219
219
|
local capturing_result=false
|
|
220
|
+
set +e
|
|
220
221
|
while IFS= read -r line || [[ -n "$line" ]]; do
|
|
221
222
|
[[ -z "$line" ]] && continue
|
|
222
223
|
|
|
@@ -289,6 +290,7 @@ run_claude_monitored() {
|
|
|
289
290
|
fi
|
|
290
291
|
fi
|
|
291
292
|
done < "$fifo_path"
|
|
293
|
+
set -e
|
|
292
294
|
|
|
293
295
|
# Clean up FIFO
|
|
294
296
|
rm -f "$fifo_path"
|