Skip to content

Commit

Permalink
License confirmation shown twice with --copy
Browse files Browse the repository at this point in the history
There's already a --phase2 option that checks if the script is being
run after extraction; adding a check to not show the license if we're in
Phase 2.
  • Loading branch information
Aaron Zollman committed Apr 3, 2014
1 parent 5719540 commit 573b58c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion makeself-header.sh
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ if test x"\$quiet" = xy -a x"\$verbose" = xy; then
exit 1
fi
MS_PrintLicense
if test x"\$copy" \!= xphase2; then
MS_PrintLicense
fi
case "\$copy" in
copy)
Expand Down

0 comments on commit 573b58c

Please sign in to comment.