Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for released (0.04 sec)

  1. before_script.sh

    L1:#!/bin/bash L2:set -xuo pipefail L3: L4:temp_log_file=/tmp/fess-build.$$ L5:unzip target/releases/fess-*.zip > ${temp_log_file} 2>&1 L6:tail ${temp_log_file} L7: L8:./fess-*/bin/fess > ${temp_log_file} 2>&1 & L9: L10:temp_json_file=/tmp/fess-log.$$ L11:touch ${temp_json_file} L12:error_count=0 L13:while true ; do L14: status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health") L15: cat ${temp_json_file} L16: if [[ x"${status}" = x200 ]] ; then L17: break...
    github.com/codelibs/fess/src/test/resources/bef...
    Sat Feb 10 03:25:34 UTC 2024
      863 bytes
Back to top