We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcffc34 commit 9970a4aCopy full SHA for 9970a4a
packages/worker/package.sh
@@ -66,6 +66,14 @@ if [[ "$PLATFORM" == "ios" ]]; then
66
popd >/dev/null 2>&1
67
fi
68
rm -rf $target_root_dir/.volta/
69
+
70
+# Create backward-compatible symlink for orchestrator
71
+# The orchestrator expects ./src/services/worker/dist/main.js
72
+# but the new structure has ./packages/worker/dist/main.js
73
+# We're only symlinking the specific file to discover any other legacy path usage
74
+mkdir -p "$target_root_dir/src/services/worker/dist"
75
+ln -s ../../../../packages/worker/dist/main.js "$target_root_dir/src/services/worker/dist/main.js"
76
77
tar zcf $OUTPUT_FILE -C $target_root_dir .
78
79
echo "Tarball is ready: $OUTPUT_FILE"
0 commit comments