mirror of
https://github.com/cucumber-sp/yandex-music-linux.git
synced 2025-09-28 01:29:03 +03:00
Remove unnecessary code for disabling close patch
Change-Id: Ic27eac6c5c7f78353e105ec09fc1477c33b9a089
This commit is contained in:
@@ -8,19 +8,16 @@ usage() {
|
||||
echo " Options:"
|
||||
echo " -o DIR Path to destination folder"
|
||||
echo " -x Extract and fix only to destination folder"
|
||||
echo " -q Do not apply application quit fix"
|
||||
echo " -h Show this help and exit"
|
||||
}
|
||||
|
||||
exe_location=
|
||||
dst="$PWD/app"
|
||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||
patch_fix_quit=1
|
||||
while getopts :xo:qh name; do
|
||||
while getopts :xo:h name; do
|
||||
case $name in
|
||||
x) extract_only=1 ;;
|
||||
o) dst="$OPTARG" ;;
|
||||
q) patch_fix_quit=0 ;;
|
||||
h)
|
||||
usage
|
||||
exit 0
|
||||
|
Reference in New Issue
Block a user