Skip to content

Commit 457ca11

Browse files
Fix symlinks to use correct names (externals, generated)
The symlinks were created as externals-link and generated-link, but the build and cache steps use ./externals and ./generated. Rename so the secondary disk is actually used. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a14eb94 commit 457ca11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
2828
# Create symlinks to use the secondary disk
2929
ln -s /mnt/build-output ./output
30-
ln -s /mnt/externals ./externals-link
31-
ln -s /mnt/generated ./generated-link
30+
ln -s /mnt/externals ./externals
31+
ln -s /mnt/generated ./generated
3232
3333
echo "Build directories configured:"
3434
ls -la | grep -E "(output|externals|generated)"

0 commit comments

Comments
 (0)