Skip to content

Commit

Permalink
fix handling of -zip, -nuget option commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tahina-pro committed Jan 22, 2025
1 parent 07fb273 commit addd0d6
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/package/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -414,13 +414,8 @@ OPTION:
HELP
}

noop ()
{
true
}

zip_everparse_cmd=noop
nuget_everparse_cmd=noop
zip_everparse_cmd=
nuget_everparse_cmd=
process_args=true

while [[ -n "$1" ]] && $process_args ; do
Expand Down Expand Up @@ -485,6 +480,6 @@ done


make_everparse "$@"
$zip_everparse_cmd
$nuget_everparse_cmd
if [[ -n "$zip_everparse_cmd" ]] ; then $zip_everparse_cmd ; fi
if [[ -n "$nuget_everparse_cmd" ]] ; then $nuget_everparse_cmd ; fi
true

0 comments on commit addd0d6

Please sign in to comment.