Refactor LICENSE Back Into Non Markdown File (#594)

[SKIP]
This commit is contained in:
Integer Limit 2024-01-04 12:02:55 +11:00 committed by GitHub
parent cecedb1c1e
commit 08bcd1c6f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 3 deletions

View File

View File

@ -64,7 +64,7 @@ async function exportModpackManifest() {
* Copies the license file.
*/
async function copyClientLicense() {
return gulp.src("../LICENSE.md").pipe(gulp.dest(clientDestDirectory));
return gulp.src("../LICENSE").pipe(gulp.dest(clientDestDirectory));
}
/**

View File

@ -37,7 +37,7 @@ function copyMMCUpdateNotes() {
* Copies the license file.
*/
async function copyMMCLicense() {
return gulp.src("../LICENSE.md").pipe(gulp.dest(mmcDestDirectory));
return gulp.src("../LICENSE").pipe(gulp.dest(mmcDestDirectory));
}
/**

View File

@ -204,7 +204,7 @@ function copyServerFiles() {
* Copies the license file.
*/
function copyServerLicense() {
return src("../LICENSE.md").pipe(dest(serverDestDirectory));
return src("../LICENSE").pipe(dest(serverDestDirectory));
}
/**