Skip to content

Commit

Permalink
Merge pull request #65 from 99linesofcode/zoxide-and-neofetch
Browse files Browse the repository at this point in the history
Fixup source to . replacement
  • Loading branch information
99linesofcode authored Mar 4, 2024
2 parents fa96108 + 964d96d commit 8155f93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devcontainer/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ RUN \
echo "*** Setting up Asdf ***" \
&& git clone https://github.com/asdf-vm/asdf.git /config/.asdf \
&& echo "*** Installing zoxide ***" \
&& . /config/.asdf/asdf.sh \
&& ASDF_DIR="${HOME}/.asdf" . /config/.asdf/asdf.sh \
&& asdf plugin add zoxide https://github.com/nyrst/asdf-zoxide.git \
&& asdf install zoxide latest
2 changes: 1 addition & 1 deletion devcontainer/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN \
echo "*** Installing Composer to $HOME/.local/bin ***" \
&& php -r "readfile('https://getcomposer.org/installer');" | php -- --install-dir=/config/.local/bin --filename=composer \
&& echo "*** Installing Node.js ***" \
&& . /config/.asdf/asdf.sh \
&& ASDF_DIR="${HOME}/.asdf" . /config/.asdf/asdf.sh \
&& asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git \
&& asdf install nodejs ${NODE_VERSION} \
&& asdf global nodejs ${NODE_VERSION}
2 changes: 1 addition & 1 deletion devcontainer/ruby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ USER ${USER}

RUN \
echo "*** Installing Node.js ***" \
&& . /config/.asdf/asdf.sh \
&& ASDF_DIR="${HOME}/.asdf" . /config/.asdf/asdf.sh \
&& asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git \
&& asdf install nodejs ${NODE_VERSION} \
&& asdf global nodejs ${NODE_VERSION} \
Expand Down

0 comments on commit 8155f93

Please sign in to comment.