Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix silly mistake in installer #305

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ done

echo "Input: Base Image = [$base_image]";
echo "Input: Build Mode = [$build_mode]";
echo "Input: Download from SourceForge = [$sd]";
echo "Input: Download from SourceForge = [$d]";
echo "Input: Force Architecture = [$force_arch]";
echo "Input: Image Tag = [$tag]";
echo "Input: Proxy = [$proxy]";
Expand Down
4 changes: 2 additions & 2 deletions install/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if [[ "${BUILD_MODE}" == "sf" ]]; then
SL_URL=${url_middle_alsa_dict["${ARCH}"]};
if [[ -n "${url_left}${SL_URL}${url_right}" ]]; then
echo "Found Alsa version for architecture ${ARCH}, downloading ..."
wget $SL_URL -O /assets/sourceforge/squeezelite.tar.gz
wget "${url_left}${SL_URL}${url_right}" -O /assets/sourceforge/squeezelite.tar.gz
mkdir /assets/sourceforge/expanded
tar xzvf /assets/sourceforge/squeezelite.tar.gz -C /assets/sourceforge/expanded
ls -la /assets/sourceforge/expanded/
Expand All @@ -60,7 +60,7 @@ if [[ "${BUILD_MODE}" == "sf" ]]; then
SL_URL_PULSE=${url_middle_pulse_dict["${ARCH}"]};
if [[ -n "${url_left}${SL_URL_PULSE}${url_right}" ]]; then
echo "Found PulseAudio version for architecture ${ARCH}, downloading ..."
wget $SL_URL_PULSE -O /assets/sourceforge/squeezelite-pulse.tar.gz
wget "${url_left}${SL_URL_PULSE}${url_right}" -O /assets/sourceforge/squeezelite-pulse.tar.gz
mkdir /assets/sourceforge/expanded-pulse
tar xzvf /assets/sourceforge/squeezelite-pulse.tar.gz -C /assets/sourceforge/expanded-pulse
ls -la /assets/sourceforge/expanded-pulse/
Expand Down