We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d287fdc + 45bbb66 commit 0c5c7ddCopy full SHA for 0c5c7dd
src/dapp/libexec/dapp/dapp---parse-deps
@@ -7,7 +7,7 @@ for x; do
7
# matches strings like foo/bar
8
if [[ ${x:?} =~ ^[^/]+/([^/]+)$ ]]; then
9
echo "$x" "${BASH_REMATCH[1]}" "https://github.com/$x"
10
- # matches strings like foo@bar, foo:bar or /foo/bar
+ # matches strings like foo:bar or /foo/bar
11
elif [[ $x =~ .*[:/](.*) ]]; then
12
name=${BASH_REMATCH[1]}
13
echo "$x" "${name:?}" "$x"
0 commit comments