Skip to content

Commit f8b4816

Browse files
committed
fix(core_exit): correct log file path for dev-debug module order
1 parent c90c8fe commit f8b4816

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lgsm/modules/core_exit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn_exit_dev_debug() {
1414
if [ -f "${rootdir}/dev-debug.log" ]; then
1515
grep -a "modulefile=" "${rootdir}/dev-debug.log" | sed 's/modulefile=//g' > "${rootdir}/dev-debug-module-order.log"
1616
elif [ -f "${lgsmlogdir}/dev-debug.log" ]; then
17-
grep -a "modulefile=" "${lgsmlogdir}/dev-debug.log" | sed 's/modulefile=//g' > "${rootdir}/dev-debug-module-order.log"
17+
grep -a "modulefile=" "${lgsmlogdir}/dev-debug.log" | sed 's/modulefile=//g' > "${lgsmlogdir}/dev-debug-module-order.log"
1818
fi
1919
fi
2020
}

0 commit comments

Comments
 (0)