mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
c6814f2bcc
1, deprecate travis, and use the gitaction for instread. 2, upgrade golang version to v1.15.6 Signed-off-by: Wang Yan <wangyan@vmware.com>
13 lines
201 B
Bash
13 lines
201 B
Bash
#/bin/env bash
|
|
|
|
if [ ! -z "$*" ]; then
|
|
$@ 2>&1 | while read line;do
|
|
echo $(date +"%T") $line
|
|
done
|
|
exit ${PIPESTATUS[0]}
|
|
else
|
|
while read line;do
|
|
echo $(date +"%T") $line
|
|
done
|
|
echo ret $?
|
|
fi |