Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Mar 7, 2024
1 parent 8d9ed18 commit c0c6dfb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hack/bra/analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ print() {

ensureAppCreated() {
path=$1
name=$(basename $path)
name=${path}
if [ -n "${credId}" ]
then
cred="
Expand Down Expand Up @@ -156,7 +156,7 @@ findApps() {
uploadArtifact() {
taskId=$1
path=$2
artifact=$(basename $path)
artifact=$(basename ${path})
code=$(curl -kSs -w "%{http_code}" -F "file=@${path}" ${host}/tasks/${taskId}/bucket/${artifact})
if [ ! $? -eq 0 ]
then
Expand Down Expand Up @@ -195,7 +195,7 @@ submitTask() {
createTask() {
appId=$1
path=$2
artifact=$(basename $path)
artifact=$(basename ${path})
d="
---
name: ${name}
Expand Down Expand Up @@ -260,7 +260,7 @@ analyzeApps() {
done
for p in $(find ${dirPath} -type f)
do
name=$(basename ${p})
name=${p}
r=${task[${name}]}
t=($r)
appId=${applications[${name}]}
Expand Down Expand Up @@ -316,7 +316,7 @@ report() {
apps=()
for p in $(find ${dirPath} -type f)
do
name=$(basename $p)
name=${p}
apps+=(${name})
done
for name in "${apps[@]}"
Expand Down

0 comments on commit c0c6dfb

Please sign in to comment.