···11+#!/usr/bin/env nu
22+# SPDX-License-Identifier: AGPL-3.0-only
33+# SPDX-FileCopyrightText: 2025 @matrixfurry.com <did:plc:zmjoeu3stwcn44647rhxa44o>
44+55+# Update the common files in this directory to the latest from https://tangled.org/@matrixfurry.com/common
66+def main [] {
77+ let files = [
88+ "CODE_OF_CONDUCT.md"
99+ "CONTRIBUTING.md"
1010+ "SECURITY.md"
1111+ "LICENSE"
1212+ ]
1313+1414+ $files
1515+ | par-each {|file|
1616+ http get $"https://tangled.org/@matrixfurry.com/common/raw/main/($file)"
1717+ | save -fp $file
1818+ }
1919+}