refactor: migrate build system from Taskfile to Makefile

This commit is contained in:
Prad Nukala
2024-11-26 10:54:32 -05:00
parent 50217d169d
commit b9b868d55a
8 changed files with 7065 additions and 89 deletions
+1
View File
@@ -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
+14
View File
@@ -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