Skip to content

Commit 2c33157

Browse files
committed
Fix #21
1 parent 2c2cafd commit 2c33157

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fork.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,16 +109,16 @@ copy_file lessons/tools/shell-heredoc.md
109109
# Copy templates
110110
copy_file tasks/templates/initial-agent-setup.md
111111

112-
# Create initial setup task from template
113-
cp "${TARGET_DIR}/tasks/templates/initial-agent-setup.md" "${TARGET_DIR}/tasks/"
114-
./scripts/tasks.py edit initial-agent-setup --set created $(iso_datetime)
115-
116112
# Initialize git
117113
(cd "${TARGET_DIR}" && git init)
118114

119115
# Clone the gptme-contrib submodule
120116
(cd "${TARGET_DIR}" && git submodule add https://github.com/gptme/gptme-contrib.git gptme-contrib)
121117

118+
# Create initial setup task from template
119+
cp "${TARGET_DIR}/tasks/templates/initial-agent-setup.md" "${TARGET_DIR}/tasks/"
120+
(cd "${TARGET_DIR}" && ./scripts/tasks.py edit initial-agent-setup --set created $(iso_datetime))
121+
122122
# If pre-commit is installed
123123
# Install pre-commit hooks
124124
command -v pre-commit > /dev/null && (cd "${TARGET_DIR}" && pre-commit install)

0 commit comments

Comments
 (0)