Skip to content

Commit

Permalink
[fix] : Fixed some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Aug 1, 2020
1 parent ea619c0 commit 6c450c5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions alterlinux-gtk-bookmarks/alterlinux-gtk-bookmarks
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ init() {

# Argument analysis and processing
options="${@}"
_opt_short="fh"
_opt_long="force,help,alterlive"
_opt_short="fht"
_opt_long="force,help,alterlive,t-mart"
OPT=$(getopt -o ${_opt_short} -l ${_opt_long} -- "${@}")
if [[ ${?} != 0 ]]; then
exit 1
Expand All @@ -115,6 +115,11 @@ while true; do
alterlive=true
shift 1
;;
-t | --t-mart)
echo "さすが店長、青春ブタ野郎だね"
shift 1
exit 0
;;
--)
shift
break
Expand Down

0 comments on commit 6c450c5

Please sign in to comment.