Skip to content

Commit

Permalink
Restore bash
Browse files Browse the repository at this point in the history
  • Loading branch information
ABUCKY0 authored Jan 2, 2025
1 parent 9c565db commit f48b949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LABEL org.opencontainers.image.source=https://github.com/lemlib/pros-build
LABEL org.opencontainers.image.licenses=MIT

# Install Required Packages and ARM Toolchain
RUN apk add --no-cache gcompat libc6-compat libstdc++ wget git gawk python3 pipx make unzip && \
RUN apk add --no-cache gcompat libc6-compat libstdc++ wget git gawk python3 pipx make unzip bash && \
wget "https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz" -O arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz && \
tar xf arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz && \
rm arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz && \
Expand Down Expand Up @@ -39,7 +39,7 @@ LABEL org.opencontainers.image.source=https://github.com/lemlib/pros-build
LABEL org.opencontainers.image.licenses=MIT
# Copy dependencies from get-dependencies stage
COPY --from=get-dependencies /arm-none-eabi-toolchain /arm-none-eabi-toolchain
RUN apk add --no-cache gcompat libc6-compat libstdc++ git gawk python3 pipx make unzip && pipx install pros-cli && apk cache clean
RUN apk add --no-cache gcompat libc6-compat libstdc++ git gawk python3 pipx make unzip bash && pipx install pros-cli && apk cache clean

# Set Environment Variables
ENV PATH="/arm-none-eabi-toolchain/bin:/root/.local/bin:${PATH}"
Expand Down
2 changes: 1 addition & 1 deletion build-tools/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
script_start_time=$SECONDS

# ----------------
Expand Down

0 comments on commit f48b949

Please sign in to comment.