Skip to content

Commit

Permalink
fix include statements for project::foo-bar, where the - was parsed i…
Browse files Browse the repository at this point in the history
…ncorrectly
  • Loading branch information
mulle-nat committed Apr 12, 2023
1 parent e7686aa commit 6f92332
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/mulle-bashfunctions-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ then

local namespace

case "${s}" in
case "${tool}" in
*-*)
namespace="${tool%%-*}"
tool="${tool#*-}"
Expand Down
2 changes: 1 addition & 1 deletion src/mulle-bashfunctions-minimal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ then

local namespace

case "${s}" in
case "${tool}" in
*-*)
namespace="${tool%%-*}"
tool="${tool#*-}"
Expand Down
2 changes: 1 addition & 1 deletion src/mulle-bashfunctions-none.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ then

local namespace

case "${s}" in
case "${tool}" in
*-*)
namespace="${tool%%-*}"
tool="${tool#*-}"
Expand Down
2 changes: 1 addition & 1 deletion src/mulle-bashfunctions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ then

local namespace

case "${s}" in
case "${tool}" in
*-*)
namespace="${tool%%-*}"
tool="${tool#*-}"
Expand Down
2 changes: 1 addition & 1 deletion src/mulle-bashloader.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ then

local namespace

case "${s}" in
case "${tool}" in
*-*)
namespace="${tool%%-*}"
tool="${tool#*-}"
Expand Down

0 comments on commit 6f92332

Please sign in to comment.