91cecec4e65aa52dfa528d17a1fba9e1b7672381 lrnassar Tue Jun 4 13:41:15 2019 -0700 Updating scripts to point to new beta machine #23616 diff --git src/utils/qa/bigPush.sh src/utils/qa/bigPush.sh index cb54238..4fcfa10 100755 --- src/utils/qa/bigPush.sh +++ src/utils/qa/bigPush.sh @@ -92,51 +92,51 @@ # First check if dbList is a file. # If not, skips down to "# Here" if [[ -e "$dbList" ]] then # Loop through our dbList file for db in $(cat "$dbList") do # Now check if tableList is a file if [[ -e "$tableList" ]] then # If tableList was a file, loop through contents for tbl in $(cat "$tableList") do # Build command with proper database, table name, and output mode. - command="sudo mypush '$db' '$tbl' mysqlbeta $outputMode" + command="sudo mypush '$db' '$tbl' $sqlbeta $outputMode" # Run command using bash echo "$command" | bash done # Or, if tableList was not a file, push table(s) to beta else for tbl in $(echo "$tableList") do - command="sudo mypush '$db' '$tbl' mysqlbeta $outputMode" + command="sudo mypush '$db' '$tbl' $sqlbeta $outputMode" echo "$command" | bash done fi done # Here. # Conditional excutes if dbList input was not a file. else for db in $(echo "$dbList") do # Similar to above, following conditionals and for loops # push tables from dev to beta if dbList was not a file if [[ -e "$tableList" ]] then for tbl in $(cat "$tableList") do - command="sudo mypush '$db' '$tbl' mysqlbeta $outputMode" + command="sudo mypush '$db' '$tbl' $sqlbeta $outputMode" echo "$command" | bash done else for tbl in $(echo "$tableList") do - command="sudo mypush '$db' '$tbl' mysqlbeta $outputMode" + command="sudo mypush '$db' '$tbl' $sqlbeta $outputMode" echo "$command" | bash done fi done fi