Convert root LICENSE to a symlink
The org standard for the DecentraLicense is that the real license text lives once at LICENSES/LicenseRef-DCL-1.0.txt (SPDX REUSE naming, matching the SPDX-License-Identifier: LicenseRef-DCL-1.0 headers used throughout the source), and the root LICENSE is a symlink to it. This keeps things DRY — no duplicated license text to drift.
This repo currently has a real root LICENSE file that duplicates the full DCL text (~17.9 KB) already present at LICENSES/LicenseRef-DCL-1.0.txt.
Fix
rm LICENSE && ln -s LICENSES/LicenseRef-DCL-1.0.txt LICENSE && git add LICENSE
Keep it as a symlink (git mode 120000).
Why
Convert root
LICENSEto a symlinkThe org standard for the DecentraLicense is that the real license text lives once at
LICENSES/LicenseRef-DCL-1.0.txt(SPDX REUSE naming, matching theSPDX-License-Identifier: LicenseRef-DCL-1.0headers used throughout the source), and the rootLICENSEis a symlink to it. This keeps things DRY — no duplicated license text to drift.This repo currently has a real root
LICENSEfile that duplicates the full DCL text (~17.9 KB) already present atLICENSES/LicenseRef-DCL-1.0.txt.Fix
Keep it as a symlink (git mode
120000).Why
LICENSEcan also trip GitHub's action-staging for composite-action consumers, so the symlink form is the safe convention.