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 4372613 commit 3abeed8Copy full SHA for 3abeed8
test-download.py
@@ -150,11 +150,12 @@ def main(exercise_folder_name: str) -> None:
150
os.chdir(os.path.join(test_folder_name, repo_name))
151
if config["exercise_repo"]["init"]:
152
init()
153
+ initial_commit_message = "Set initial state"
154
if download_resources:
155
add_all()
- commit("Initialize exercise")
156
+ commit(initial_commit_message)
157
else:
- empty_commit("Initialize exercise")
158
+ empty_commit(initial_commit_message)
159
160
if "setup" in namespace:
161
namespace["setup"]()
0 commit comments