Skip to content

Commit

Permalink
Fixed "expr: warning: unportable BRE: ^Main-Class: \\([^[:space:]]*\\…
Browse files Browse the repository at this point in the history
…)': using ^' as the first character of the basic regular expression is not portable; it is being ignored"
  • Loading branch information
mclang committed Aug 29, 2013
1 parent 2aab88b commit be7f04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/drip
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ declare -a runtime_args
function jar_main_class {
local jar=$1
local line=$(unzip -p $jar META-INF/MANIFEST.MF | grep ^Main-Class:)
local main_class=$(expr -- "$line" : '^Main-Class: \([^[:space:]]*\)')
local main_class=$(expr -- "$line" : 'Main-Class: \([^[:space:]]*\)')
echo $main_class
}

Expand Down

0 comments on commit be7f04f

Please sign in to comment.