Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tfedor committed Mar 14, 2024
1 parent a6d9103 commit c97941d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/make-release.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import YAML from "yaml";

const __dirname = import.meta.dirname;

const root = `${__dirname}/../..`;
const root = `${__dirname}/../`;
const changelogPath = `${root}/changelog.yml`;
const releasesPath = `${root}/../AugmentedSteam_releases/`;

Expand Down
2 changes: 1 addition & 1 deletion scripts/tools/builder.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function buildChangelog(path) {
}

export default async function(options) {
const rootDir = path.resolve(__dirname, "../../../");
const rootDir = path.resolve(__dirname, "../../");
const srcDir = path.resolve(rootDir, "src");
const distDir = path.resolve(rootDir, `dist/${options.dev ? "dev" : "prod"}.${options.browser}`);

Expand Down

0 comments on commit c97941d

Please sign in to comment.