1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00

Fix: Missing args in Sub-commands

This commit is contained in:
Ray Guo
2018-09-02 09:32:54 +08:00
committed by GitHub
parent 787c05d651
commit e7162518f5
+1 -1
View File
@@ -460,5 +460,5 @@ while true; do
version) cmd_name=version;;
*) cmd_name="query $cmd_name";;
esac
cmd_$cmd_name $cmdargs
cmd_$cmd_name $cmd_args
done