Skip to content

Commit 0c5c7dd

Browse files
authored
Merge pull request #779 from transmissions11/patch-9
2 parents d287fdc + 45bbb66 commit 0c5c7dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dapp/libexec/dapp/dapp---parse-deps

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ for x; do
77
# matches strings like foo/bar
88
if [[ ${x:?} =~ ^[^/]+/([^/]+)$ ]]; then
99
echo "$x" "${BASH_REMATCH[1]}" "https://github.com/$x"
10-
# matches strings like foo@bar, foo:bar or /foo/bar
10+
# matches strings like foo:bar or /foo/bar
1111
elif [[ $x =~ .*[:/](.*) ]]; then
1212
name=${BASH_REMATCH[1]}
1313
echo "$x" "${name:?}" "$x"

0 commit comments

Comments
 (0)