generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
Should ARM64 emulation be required, install.sh fails due to a bad referential link. At the time lines 87-98 run, the script is within the /server directory and attempts to perform operations on '../scripts/setup_multiarch.sh' - this fails as setup_multiarch.sh is located within a subfolder 'utils' in the setup directory.
Suggest change from
# Make the script executable
chmod +x ../scripts/setup_multiarch.sh
# Run the setup_multiarch.sh script
echo "Running setup_multiarch.sh to configure ARM64 emulation..."
../scripts/setup_multiarch.sh
# Create a symlink in /usr/local/bin for global access
sudo ln -sf ../scripts/setup_multiarch.sh /usr/local/bin/setup_multiarch
echo "ARM64 emulation setup complete!"
echo "You can run 'setup_multiarch' command anytime to refresh the configuration"
to
# Make the script executable
chmod +x ../scripts/utils/setup_multiarch.sh
# Run the setup_multiarch.sh script
echo "Running setup_multiarch.sh to configure ARM64 emulation..."
../scripts/utils/setup_multiarch.sh
# Create a symlink in /usr/local/bin for global access
sudo ln -sf ../scripts/utils/setup_multiarch.sh /usr/local/bin/setup_multiarch
echo "ARM64 emulation setup complete!"
echo "You can run 'setup_multiarch' command anytime to refresh the configuration"
Metadata
Metadata
Assignees
Labels
No labels