We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362c87a commit 03d9472Copy full SHA for 03d9472
app/commands/download.py
@@ -88,11 +88,12 @@ def setup_exercise_folder(
88
89
if config.exercise_repo.init:
90
init(verbose)
91
+ initial_commit_message = "Set initial state"
92
if download_resources:
93
add_all(verbose)
- commit("Initialize exercise", verbose)
94
+ commit(initial_commit_message, verbose)
95
else:
- empty_commit("Initialize exercise", verbose)
96
+ empty_commit(initial_commit_message, verbose)
97
98
info("Executing download setup")
99
execute_py_file_function_from_url(
0 commit comments