bugscpp
bugscpp copied to clipboard
Wish the commands were revised.
# current status
d++ checkout $PROJECT -b 1 -t $DIRECTORY_PATH_TO_WANT
d++ build $REPOSITORY_PATH_TO_BUILD
d++ test $REPOSITORY_PATH_TO_BUILD
Above code block is current d++ command. It felt uncomfortable to use. I'd appreciate it if you could fix it as follows.
# recommendation
d++ checkout $PROJECT -b 1 -t $DIRECTORY_PATH_TO_WANT
d++ build $PROJECT -b 1 -t $DIRECTORY_PATH_TO_WANT
d++ test $PROJECT -b 1 -t $DIRECTORY_PATH_TO_WANT
Thank you.