We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5abeabb commit 46b44bcCopy full SHA for 46b44bc
1 file changed
lib/core.ps1
@@ -867,7 +867,7 @@ function applist($apps, $global) {
867
}
868
869
function parse_app([string] $app) {
870
- if($app -match '(?:(?<bucket>[a-zA-Z0-9-]+)\/)?(?<app>.*.json$|[a-zA-Z0-9-_.]+)(?:@(?<version>.*))?') {
+ if($app -match '(?:(?<bucket>[a-zA-Z0-9-]+)\/)?(?<app>.*\.json$|[a-zA-Z0-9-_.]+)(?:@(?<version>.*))?') {
871
return $matches['app'], $matches['bucket'], $matches['version']
872
873
return $app, $null, $null
0 commit comments