aboutsummaryrefslogtreecommitdiff
path: root/scripts/update_manifest.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update_manifest.js')
-rwxr-xr-xscripts/update_manifest.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/update_manifest.js b/scripts/update_manifest.js
index 1a06a2d7..bbd2a5f4 100755
--- a/scripts/update_manifest.js
+++ b/scripts/update_manifest.js
@@ -101,9 +101,7 @@ const specialActions = changesFile ?
// higher-level directories will succeed.
.concat(Array.from(dirsDeleted.values())
.sort((a, b) => b.split("/").length - a.split("/").length)
- .map(dir => {
- return { action: "deleteDir", target: dir };
- }))
+ .map(dir => ({ action: "deleteDir", target: dir })))
: [];
const urlBase = "https://s3.wasabisys.com/ao-downloads/";