Skip to content

Commit

Permalink
Remove arm64 folder in x64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
YT-Advanced authored Nov 26, 2023
1 parent eae5cf2 commit aeda55d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,9 @@ echo -e "Convert images to vhdx done\n"

echo "Remove signature and add scripts"
sudo rm -rf "${WORK_DIR:?}"/wsa/"$ARCH"/\[Content_Types\].xml "$WORK_DIR/wsa/$ARCH/AppxBlockMap.xml" "$WORK_DIR/wsa/$ARCH/AppxSignature.p7x" "$WORK_DIR/wsa/$ARCH/AppxMetadata" || abort
if [[ "$ARCH" == "x64" ]]; then
sudo rm -rf "$WORK_DIR/wsa/$ARCH/arm64/" || abort
fi
mkdir "$WORK_DIR/wsa/$ARCH/uwp"
cp "$VCLibs_PATH" "$xaml_PATH" "$WORK_DIR/wsa/$ARCH/uwp/" || abort
cp "$UWPVCLibs_PATH" "$xaml_PATH" "$WORK_DIR/wsa/$ARCH/uwp/" || abort
Expand Down

2 comments on commit aeda55d

@s1204IT
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wait, does "x64" include a folder called arm64?
I think amd64 it.

@YT-Advanced
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@s1204IT It has an arm64 folder, also a user report that it make WSA laggy

Please sign in to comment.