Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
visortelle committed Mar 3, 2024
1 parent 49d5132 commit 5a8569a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/pytools/lib/execute/site_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def execute(asf_site: Path):
yarn = find_command('yarn', msg="yarn is required")
node = find_command('node', msg="node is required")
bash = find_command('bash', msg="bash is required")
run(yarn, 'install', '--frozen-lockfile', cwd=site_path())
run(yarn, '--version', cwd=site_path())
run(yarn, 'install', '--immutable', cwd=site_path())
run(node, 'scripts/replace.js', cwd=site_path())
run(bash, 'scripts/split-version-build.sh', *modified_files, cwd=site_path())
latest_content = site_path() / 'build'
Expand Down

0 comments on commit 5a8569a

Please sign in to comment.