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

Merge pull request #108 from ray-g/master

Fix: Missing args in Sub-commands
This commit is contained in:
Igor Chubin
2018-09-03 22:48:24 +02:00
committed by GitHub
+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