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 53d6adf commit 68b2e07Copy full SHA for 68b2e07
hooks/post_gen_project.py
@@ -3,6 +3,7 @@
3
import shutil
4
import requests
5
import subprocess
6
+import sys
7
8
9
def get_pref_label(activity_path):
@@ -49,7 +50,7 @@ def fetch_latest_checksum(base_path):
49
50
try:
51
# Using Python requests to fetch and parse JSON
52
response = requests.get(
- "https://api.github.com/repos/ReproNim/reproschema-ui/commits/master"
53
+ "https://api.github.com/repos/ReproNim/reproschema-ui/commits/main"
54
)
55
response.raise_for_status() # Raises an HTTPError if the HTTP request returned an unsuccessful status code
56
latest_hash = response.json()["sha"]
0 commit comments