Skip to content

Commit

Permalink
chore: let the get-zsh.sh run first
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongwencool committed May 14, 2024
1 parent a73935d commit 66a16ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ ARG LUX_REF=lux-2.9.1

COPY get-otp.sh get-zsh.sh get-elixir.sh get-fdb.sh get-emqtt-bench.sh get-lux.sh /

RUN /get-otp.sh ${OTP_VERSION} && \
/get-elixir.sh ${ELIXIR_VERSION} && \
/get-zsh.sh && \
RUN /get-zsh.sh && \
/get-otp.sh ${OTP_VERSION} && \
/get-elixir.sh ${ELIXIR_VERSION} && \
env FDB_VERSION=${FDB_VERSION} /get-fdb.sh && \
env EMQTT_BENCH_REF=${EMQTT_BENCH_REF} /get-emqtt-bench.sh && \
env LUX_REF=${LUX_REF} /get-lux.sh && \
Expand Down
2 changes: 1 addition & 1 deletion get-zsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ chmod +x zsh-in-docker.sh
-a 'SPACESHIP_PROMPT_ADD_NEWLINE="false"' \
-a 'SPACESHIP_PROMPT_SEPARATE_LINE="false"' \
-p git \
-p git-fast
-p git-fast \
-p https://github.com/zsh-users/zsh-autosuggestions \
-p https://github.com/zsh-users/zsh-completions \
-p https://github.com/zsh-users/zsh-history-substring-search \
Expand Down

0 comments on commit 66a16ff

Please sign in to comment.