Skip to content

Commit

Permalink
Fix bashrc.d complaint (#3420)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Dec 4, 2021
1 parent ce346a9 commit 66b93d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ for f in /etc/bashrc/*.bashrc; do
source $f;
done

for i in $HOME/.bashrc.d/*; do source $i; done
for i in $(\ls $HOME/.bashrc.d/* 2>/dev/null); do source $i; done
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var DockerComposeFileFormatVersion = "3.6"
var WebImg = "drud/ddev-webserver"

// WebTag defines the default web image tag
var WebTag = "20211124_bashrc.d" // Note that this can be overridden by make
var WebTag = "20211203_fix_bashrc.d" // Note that this can be overridden by make

// DBImg defines the default db image used for applications.
var DBImg = "drud/ddev-dbserver"
Expand Down

0 comments on commit 66b93d6

Please sign in to comment.