reformat output

reformated output
This commit is contained in:
psycho 2021-02-03 22:46:38 +01:00
parent 22cd2e1844
commit a83fb37c6c
2 changed files with 6 additions and 5 deletions

3
Jenkinsfile vendored
View File

@ -135,7 +135,8 @@ def checkout()
throw new Exception("Error checking out OWRT")
}
script = 'set +x; python ' + scripts_path + 'sftp_test.py -a ' + sftp_host + ' -u ' + sftp_user + ' -p ' + params.SFTP_PASSWD + ' -g ' + git_folder + ' -f ' + scripts_path + known_hosts + ' -l ' + sftp_path + '; set -x'
printDebug(script)
script_print = 'set +x; python ' + scripts_path + 'sftp_test.py -a ' + sftp_host + ' -u ' + sftp_user + ' -p ************' + ' -g ' + git_folder + ' -f ' + scripts_path + known_hosts + ' -l ' + sftp_path + '; set -x'
printDebug(script_print)
def ret = sh label: 'is_build_needed', script: script, returnStdout: true
if(ret.trim().equalsIgnoreCase('True'))
{

View File

@ -31,11 +31,11 @@ def usage():
print('usage: ' + os.path.basename(sys.argv[0]) + ' -a <host> -u <user> -p <passwd> -f <host_file> -g <git_link> -l <sftp_path>[-d] [-v]\n')
print('arguments:')
print('\t-a --host=\t\thost to connect')
print('\t-a --user=\t\tusername')
print('\t-u --user=\t\tusername')
print('\t-p --passwd=\t\tpassword')
print('\t-f --host_file=\tknown host file')
print('\t-g --git_link=\tpath to git repo')
print('\t-l --sftp_path=\tpath to builds')
print('\t-f --host_file=\t\tknown host file')
print('\t-g --git_link=\t\tpath to git repo')
print('\t-l --sftp_path=\t\tpath to builds')
print('optional:')
print('\t-d --debug\t\t')
print('\t-v --version\t\tprints version of script')