Skip to content

Commit

Permalink
Added module
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades committed May 26, 2024
1 parent c96c785 commit 4a979b2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions check_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
try:
print(" DOWNLOAD: ...", end=' ')
# clone the package into ".temp" folder
exit = os.system("git clone " + download_url + " .temp --quiet --depth 1 --branch " + version)
if exit != 0:
exit_code = os.system("git clone " + download_url + " .temp --quiet --depth 1 --branch " + version)
if exit_code != 0:
print(RED + "ERROR" + RESET)
has_error = True
continue
Expand Down
17 changes: 17 additions & 0 deletions pkgs/core.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "core",
"download_url": "https://github.com/snowball-lang/core.git",
"tags": [
"snowball",
"standard-library",
"stdlib",
"std",
"core"
],
"versions": [
"0.1.0"
],
"description": "🧠 Snowball's core standard library!",
"license": "MIT",
"web": "https://github.com/snowball-lang/core"
}

0 comments on commit 4a979b2

Please sign in to comment.