Commit 16b1e3fb authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play: fix version as second arg

parent ef0403c2
...@@ -64,7 +64,7 @@ __run_script() ...@@ -64,7 +64,7 @@ __run_script()
__get_app_package() __get_app_package()
{ {
__run_script "$1" --package-name "$2" 2>/dev/null __run_script "$1" --package-name "$2" "$3" 2>/dev/null
} }
...@@ -335,7 +335,7 @@ __epm_play_install() ...@@ -335,7 +335,7 @@ __epm_play_install()
else else
shift shift
fi fi
__epm_play_install_one $p $v $options || RES=1 __epm_play_install_one "$p" "$v" $options || RES=1
done done
return $RES return $RES
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment