deepflow 0.1.61 → 0.1.62
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 +6 -5
- package/package.json +1 -1
package/bin/deepflow-auto.sh
CHANGED
|
@@ -1232,12 +1232,13 @@ run_spec_cycle() {
|
|
|
1232
1232
|
main() {
|
|
1233
1233
|
parse_flags "$@"
|
|
1234
1234
|
|
|
1235
|
-
#
|
|
1235
|
+
# Ensure git repository exists (needed for worktree-based parallel spikes)
|
|
1236
1236
|
if ! git -C "$PROJECT_ROOT" rev-parse --git-dir &>/dev/null; then
|
|
1237
|
-
echo "
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1237
|
+
echo "Initializing git repository in ${PROJECT_ROOT}..."
|
|
1238
|
+
git -C "$PROJECT_ROOT" init -q
|
|
1239
|
+
git -C "$PROJECT_ROOT" add -A
|
|
1240
|
+
git -C "$PROJECT_ROOT" commit -q -m "initial commit"
|
|
1241
|
+
auto_log "Auto-initialized git repository in ${PROJECT_ROOT}"
|
|
1241
1242
|
fi
|
|
1242
1243
|
|
|
1243
1244
|
auto_log "deepflow-auto started (parallel=${PARALLEL}, hypotheses=${HYPOTHESES}, max_cycles=${MAX_CYCLES}, continue=${CONTINUE}, fresh=${FRESH})"
|