diff --git a/contrib/dev.nu b/contrib/dev.nu deleted file mode 100644 index d892dc57467b83882e8fa1468919c385279c41c9..0000000000000000000000000000000000000000 --- a/contrib/dev.nu +++ /dev/null @@ -1,19 +0,0 @@ -def main [user = "jolheiser", base_url = "https://git.jolheiser.com", repos = ["ugit", "helix.drv", "tmpl"]] { - - # Clean - try { - rm -r .ugit/ - rm -r .ssh/ - } - - # SSH - mkdir .ssh - http get $"https://github.com/($user).keys" | save --force .ssh/authorized_keys - - # Git - mkdir .ugit - for $repo in $repos { - git clone --bare $"($base_url)/($repo).git" $".ugit/($repo).git" - {"private": false, "description": $repo} | save $".ugit/($repo).git/ugit.json" - } -}