Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"vendor/delight-im/cookie/.travis-ci-apache",
"vendor/doctrine",
".distignore",
"encrypt-sectrets.php",
"encrypt-secrets.php",
"scripts",
"mu-plugins",
"DEPLOY.md",
Expand Down
2 changes: 1 addition & 1 deletion encrypt-sectrets.php → encrypt-secrets.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php

Check failure on line 1 in encrypt-secrets.php

View workflow job for this annotation

GitHub Actions / Code Quality Checks

Missing file doc comment
// phpcs:disable
// encrypt-secrets.php
$filename = 'inc/class-addon-repository.php';
Expand Down Expand Up @@ -28,4 +28,4 @@
echo "Updated $target_file\n";
} else {
echo "$target_file is up to date\n";
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"postbuild": "npm run archive",
"build:dev": "npm run copylibs && npm run uglify && npm run cleancss && npm run makepot",
"build:translate": "npm run copylibs && npm run uglify && npm run cleancss && npm run makepot && npm run translate",
"prearchive": "php encrypt-sectrets.php",
"prearchive": "php encrypt-secrets.php",
Copy link

Copilot AI Jan 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reference in package.json has been correctly updated, but there's still another reference to the old filename "encrypt-sectrets.php" in composer.json line 145 (in the archive.exclude array) that also needs to be updated to "encrypt-secrets.php" for consistency.

Copilot uses AI. Check for mistakes.
"archive": "node scripts/archive.js",
"preuglify": "node scripts/clean-js.js",
"uglify": "node scripts/uglify.js",
Expand Down
Loading