Skip to content

Commit

Permalink
fix locale folder case
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe authored and escattone committed Apr 1, 2020
1 parent 37558f8 commit a55ca1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion content/scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,10 @@ class Builder {
if (!this.options.destination) {
throw new Error("options.destination not set");
}
const folderpath = path.join(this.options.destination, locale);
const folderpath = path.join(
this.options.destination,
locale.toLowerCase()
);
if (this.options.startClean) {
// Experimental new feature
// https://nodejs.org/api/fs.html#fs_fs_rmdirsync_path_options
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci-end-to-end.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ex
set -e


# TEMPORARILY...
Expand Down

0 comments on commit a55ca1d

Please sign in to comment.