mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
refactor: migrate build system from Taskfile to Makefile
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
go install github.com/cosmos/gex@latest
|
||||
go install github.com/apple/pkl-go/cmd/pkl-gen-go@latest
|
||||
|
||||
rm -rf ~/.ipfs
|
||||
|
||||
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
ROOT_DIR=$(git rev-parse --show-toplevel)
|
||||
|
||||
bunx pkl project package $ROOT_DIR/pkl/*/
|
||||
|
||||
for dir in .out/*/; do
|
||||
folder=$(basename "$dir")
|
||||
rclone copy "$dir" "r2:pkljar/$folder"
|
||||
done
|
||||
|
||||
rm -rf .out
|
||||
Reference in New Issue
Block a user