Skip to content

Commit

Permalink
installs runtime to /tmp/runtime (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikey authored Apr 4, 2023
1 parent 84c173a commit 1dd02ad
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,11 @@ clean:
@echo "\n🧹 Cleaning...\n"
rm -rf dist
@echo "\n✅ Done.\n"

.PHONY: setup
setup:
@echo "\n📥 Downloading and extracting runtime...\n"
mkdir -p /tmp/runtime
wget -O /tmp/blockless-runtime.tar.gz https://github.com/blocklessnetwork/runtime/releases/download/v0.0.12/blockless-runtime.linux-latest.x86_64.tar.gz
tar -xzf /tmp/blockless-runtime.tar.gz -C /tmp/runtime
@echo "\n✅ Done.\n"

0 comments on commit 1dd02ad

Please sign in to comment.