comparison Debug/cli/cli.c @ 294:834d69d22d47

Adding list of modified files to the cli version command.
author Jacob Alexander <haata@kiibohd.com>
date Sat, 28 Feb 2015 23:50:13 -0800
parents 2a4c99da1276
children a0ad3a172269
comparison
equal deleted inserted replaced
293:57f40871c726 294:834d69d22d47
1 /* Copyright (C) 2014 by Jacob Alexander 1 /* Copyright (C) 2014-2015 by Jacob Alexander
2 * 2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal 4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights 5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
420 void cliFunc_version( char* args ) 420 void cliFunc_version( char* args )
421 { 421 {
422 print( NL ); 422 print( NL );
423 print( " \033[1mRevision:\033[0m " CLI_Revision NL ); 423 print( " \033[1mRevision:\033[0m " CLI_Revision NL );
424 print( " \033[1mBranch:\033[0m " CLI_Branch NL ); 424 print( " \033[1mBranch:\033[0m " CLI_Branch NL );
425 print( " \033[1mTree Status:\033[0m " CLI_ModifiedStatus NL ); 425 print( " \033[1mTree Status:\033[0m " CLI_ModifiedStatus CLI_ModifiedFiles NL );
426 print( " \033[1mRepo Origin:\033[0m " CLI_RepoOrigin NL ); 426 print( " \033[1mRepo Origin:\033[0m " CLI_RepoOrigin NL );
427 print( " \033[1mCommit Date:\033[0m " CLI_CommitDate NL ); 427 print( " \033[1mCommit Date:\033[0m " CLI_CommitDate NL );
428 print( " \033[1mCommit Author:\033[0m " CLI_CommitAuthor NL ); 428 print( " \033[1mCommit Author:\033[0m " CLI_CommitAuthor NL );
429 print( " \033[1mBuild Date:\033[0m " CLI_BuildDate NL ); 429 print( " \033[1mBuild Date:\033[0m " CLI_BuildDate NL );
430 print( " \033[1mBuild OS:\033[0m " CLI_BuildOS NL ); 430 print( " \033[1mBuild OS:\033[0m " CLI_BuildOS NL );